/* Courses Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Banner Section */
.courses-banner {
    position: relative;
    width: 100%;
}

.courses-banner-img {
    width: 100%;
    min-height: 300px;
    max-height: 480px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

/* Section 1 Styles */
.course-section-1 {
    background-color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.course-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/home-section2-pattern.svg');
    background-repeat: no-repeat;
    background-position: top left -10%;
    background-size: 70%;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.course-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #D45052;
}

.course-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #323031;
}

.course-divider {
    border-color: #E6EAEF;
    opacity: 1;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Info Block */
.info-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0%;
    color: #D28D8D;
    margin-bottom: 0.25rem;
}

.info-value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #323031;
}

.course-section-heading-1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #D45052;
}

@media (min-width: 768px) {
    .info-col-border {
        border-left: 1px solid #E6EAEF;
        padding-left: 1.5rem;
    }
}

/* Typography */
.course-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D45052;
}

.course-section-heading-green {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #39B54A;
}

.course-overview-green {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0%;
    color: #39B54A;
}

.course-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #323031;
}

.course-text-sub-dec {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #323031;
}

/* Learn List */
.learn-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #D45052;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D45052;
    font-size: 0.85rem;
}

.learn-list-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #D45052;
}

.learn-divider {
    border-color: #E6EAEF;
    opacity: 1;
    margin-left: 3.5rem;
}

/* Section 2 Styles */
.course-section-2 {
    background: #FFF4EF;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.course-sec2-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #D45052;
}

.course-sec2-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #323031;
}

.learning-gallery {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.9fr;
    grid-template-rows: 240px 240px;
    gap: 15px;
    margin-top: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (max-width: 768px) {
    .learning-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .gallery-img-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-img-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-img-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-img-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-img-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}

@media (min-width: 769px) {
    .gallery-img-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-img-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-img-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .gallery-img-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-img-5 {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }
}

.course-sec2-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #D45052;
}

.course-sec2-list {
    padding-left: 0;
}

.course-sec2-list .list-dot {
    color: #323031;
    font-size: 1.25rem;
    line-height: 1;
}

.course-sec2-list .list-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0%;
    color: #323031;
}

.course-sec2-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #D45052;
}

.course-sec2-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #323031;
}

.course-btn-outline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #F3743C;
    border: 1px solid #F3743C;
    background-color: transparent;
    padding: 10px 24px;

    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.course-btn-outline:hover,
.course-btn-outline:active {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #F3743C;
    border: 1px solid #F3743C;
    background-color: transparent;
    padding: 10px 24px;

    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    text-transform: uppercase;
}