/* ==========================================================================
   Weekly Schedule Section
   ========================================================================== */

.weekly-schedule {
    padding: 6rem 0;
    background-color: #f9fafb;
}

/* Header */
.schedule-header {
    margin-bottom: 4rem;
}

.schedule-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.schedule-desc {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    max-width: 640px;
    line-height: 1.7;
}

/* Grid — 3 colunas iguais */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Card */
.schedule-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Imagem */
.schedule-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.75rem;
}

.schedule-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.schedule-card:hover .schedule-img {
    transform: scale(1.04);
}

/* Corpo */
.schedule-card-body {
    display: flex;
    flex-direction: column;
}

.schedule-indicator {
    width: 36px;
    height: 3px;
    background-color: #9ca3af;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.schedule-card-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.schedule-card-desc {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.schedule-link {
    color: var(--color-gray-600);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.schedule-link:hover {
    color: var(--color-black);
}

.schedule-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    border: 1px solid var(--color-gray-300);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    width: fit-content;
}

/* Responsive */
@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .schedule-img-wrapper {
        aspect-ratio: 4 / 3;
    }
}
