/* scheduling.css */
.scheduling {
    font-family: 'WantedSansVariable', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.25rem;
}

.scheduling-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    width: 100%;
}

.scheduling-text {
    max-width: 30rem;
}

.scheduling-text h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.scheduling-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.scheduling-text .highlight {
    background: linear-gradient(to right, #007bff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-text {
    font-size: 0.875rem;
    color: #007bff !important;
    text-decoration: none;
    font-weight: 600;
}

strong {
    color: #707070
}

p strong {
    transition: color 0.3s ease;
}

p strong:hover {
    color: #007bff;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .scheduling-text h2 {
        font-size: 2.5rem;
    }

    .scheduling-text p {
        font-size: 1rem;
    }

    .list-of-cards {
        flex: 1 1 100%;
        justify-content: center;
    }

    .card {
        flex: 1 1 45%;
    }

    .large-card {
        flex: 1 1 60%;
    }
}

@media screen and (max-width: 992px) {
    .scheduling-content {
        flex-direction: column;
        align-items: center;
    }

    .list-of-cards {
        justify-content: center;
    }

    .card {
        flex: 1 1 80%;
    }

    .large-card {
        flex: 1 1 80%;
    }
}

@media screen and (max-width: 768px) {
    .scheduling {
        padding: 2rem 1rem;
    }

    .scheduling-content {
        gap: 1rem;
    }

    .scheduling-text h2 {
        font-size: 3rem;
    }

    .scheduling-text p {
        font-size: 0.95rem;
    }

    .list-of-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
        max-width: 300px;
    }

    .card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}