.gestores-list-page {
    background: #fff;
    color: var(--border-color);
    min-height: calc(100vh - 100px);
    padding: 100px 0 64px;
}

.gestores-list-header {
    margin: 32px 0 42px;
}

.gestores-list-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.gestores-list-period {
    padding-top: 22px;
}

.gestores-list-period-title {
    align-items: baseline;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.gestores-list-period-title h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.gestores-list-period-title span {
    color: #666;
    flex: 0 0 auto;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gestores-list {
    border: 2px solid var(--border-color);
    list-style: none;
    margin: 0;
    padding: 0;
}

.gestores-list-item,
.gestores-list-caption,
.gestores-list-empty {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(120px, 0.18fr) minmax(220px, 1fr) minmax(180px, 0.32fr);
    min-height: 58px;
    padding: 12px 16px;
}

.gestores-list-caption {
    background: #f0f2f2;
    border-bottom: 2px solid var(--border-color);
    color: #0D0D0C;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    min-height: 42px;
    text-transform: uppercase;
}

.gestores-list-caption > span:last-child {
    display: flex;
    gap: 8px 24px;
    justify-content: flex-end;
}

.gestores-list-item + .gestores-list-item,
.gestores-list-caption + .gestores-list-item,
.gestores-list-caption + .gestores-list-empty,
.gestores-list-empty + .gestores-list-item {
    border-top: 1px solid #d5d5d5;
}

.gestores-list-term {
    font-size: 0.95rem;
    font-weight: 800;
}

.gestores-list-name {
    font-size: 1rem;
    font-weight: 700;
}

.gestores-list-dates {
    color: #5d5d5d;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px 24px;
    justify-content: flex-end;
}

.gestores-list-dates .info-symbol {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 4px;
    width: 14px;
}

.gestores-list-empty {
    color: #666;
    display: block;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .gestores-list-page {
        padding-top: 100px;
    }

    .gestores-list-period-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .gestores-list-period-title h2 {
        font-size: 1.05rem;
    }

    .gestores-list-item,
    .gestores-list-caption,
    .gestores-list-empty {
        align-items: flex-start;
        gap: 6px;
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .gestores-list-caption {
        display: none;
    }

    .gestores-list-dates {
        justify-content: flex-start;
    }
}
