/* =========================================================
   HERO COURSE
========================================================= */

.hero-course {

    position: relative;

    min-height: 860px;

    overflow: visible;

    padding: 28px 32px 140px;

    background: #03143f;

}

/* =========================================================
   BACKGROUND
========================================================= */

.hero-course__background {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.hero-course__background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}

/* =========================================================
   OVERLAY
========================================================= */

.hero-course__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,63,0.94) 0%,
            rgba(3,20,63,0.84) 34%,
            rgba(3,20,63,0.42) 62%,
            rgba(3,20,63,0.12) 100%
        );

    z-index: 2;

}

/* =========================================================
   CONTENT
========================================================= */

.hero-course__content {

    position: relative;

    z-index: 5;

    max-width: 610px;

    margin-top:7rem;

}

/* =========================================================
   BREADCRUMB
========================================================= */

.hero-course__breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 24px;

    font-size: 13px;

    color: rgba(255,255,255,0.72);

}

.hero-course__breadcrumb a {

    color: rgba(255,255,255,0.72);

    text-decoration: none;

}

.hero-course__breadcrumb a:hover {

    color: var(--color-white);

}

.hero-course__breadcrumb svg {

    width: 14px;
    height: 14px;

    stroke-width: 2.2;

}

/* =========================================================
   SUBTITLE
========================================================= */

.hero-course__subtitle {

    display: inline-block;

    font-size: 14px;

    font-weight: 800;

    color: var(--color-secondary);

    margin-bottom: 18px;

}

/* =========================================================
   TITLE
========================================================= */

.hero-course__title {

    font-size: 64px;

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -2px;

    color: var(--color-white);

    margin-bottom: 20px;

}

.hero-course__title span {

    color: var(--color-secondary);

}

/* =========================================================
   TEXT
========================================================= */

.hero-course__text {

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255,255,255,0.92);

    margin-bottom: 28px;

}

/* =========================================================
   LIST
========================================================= */

.hero-course__list {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 34px;

}

/* =========================================================
   ITEM
========================================================= */

.hero-course__item {

    display: flex;

    align-items: center;

    gap: 10px;

}

.hero-course__item svg {

    width: 18px;
    height: 18px;

    stroke: #2563eb;

    stroke-width: 2.4;

    flex-shrink: 0;

}

.hero-course__item span {

    font-size: 15px;

    color: var(--color-white);

}

/* =========================================================
   ACTIONS
========================================================= */

.hero-course__actions {

    display: flex;

    align-items: center;

    gap: 14px;

}

/* =========================================================
   BUTTON
========================================================= */

.hero-course__btn {

    height: 56px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: var(--radius-sm);

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition-fast);

}

.hero-course__btn svg {

    width: 16px;
    height: 16px;

    stroke-width: 2.4;

}

/* PRIMARY */

.hero-course__btn--primary {

    background: var(--color-secondary);

    color: var(--color-white);

}

.hero-course__btn--primary:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* OUTLINE */

.hero-course__btn--outline {

    border: 1px solid rgba(255,255,255,0.35);

    background: rgba(255,255,255,0.03);

    color: var(--color-white);

}

.hero-course__btn--outline:hover {

    background: rgba(255,255,255,0.08);

}

/* =========================================================
   CIRCLE
========================================================= */

.hero-course__circle {

    position: absolute;

    top: 74px;
    right: 70px;

    z-index: 5;

    width: 150px;
    height: 150px;

    border: 2px solid var(--color-secondary);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

}

.hero-course__circle span {

    font-size: 34px;

    font-weight: 800;

    color: var(--color-secondary);

    margin-bottom: 8px;

}

.hero-course__circle p {

    font-size: 13px;

    line-height: 1.5;

    color: var(--color-white);

    max-width: 90px;

}

/* =========================================================
   FEATURES
========================================================= */

.hero-course__features {

    position: absolute;

    left: 32px;
    right: 32px;

    bottom: -35px;

    z-index: 5;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    padding: 28px 20px;

    border-radius: var(--radius-md);

    border: 1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(
            135deg,
            rgba(3,20,63,0.96) 0%,
            rgba(7,25,75,0.96) 55%,
            rgba(13,42,120,0.96) 100%
        );

    backdrop-filter: blur(6px);

    box-shadow: var(--shadow-lg);

}

/* =========================================================
   FEATURE
========================================================= */

.hero-course__feature {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 0 22px;

    position: relative;

}

.hero-course__feature:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 6px;
    right: 0;

    width: 1px;
    height: 72px;

    background: rgba(255,255,255,0.12);

}

/* =========================================================
   FEATURE ICON
========================================================= */

.hero-course__feature-icon {

    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1d4ed8 100%
        );

    display: flex;

    align-items: center;
    justify-content: center;

}

.hero-course__feature-icon svg {

    width: 30px;
    height: 30px;

    stroke: var(--color-white);

    stroke-width: 1.8;

}

/* =========================================================
   FEATURE CONTENT
========================================================= */

.hero-course__feature-content h3 {

    font-size: 16px;

    font-weight: 700;

    line-height: 1.3;

    color: var(--color-white);

    margin-bottom: 8px;

}

.hero-course__feature-content p {

    font-size: 13px;

    line-height: 1.7;

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .hero-course {

        min-height: auto;

        padding-bottom: 60px;

    }

    .hero-course__features {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 50px;

        grid-template-columns: repeat(2, 1fr);

        gap: 30px 0;

    }

    .hero-course__feature:nth-child(2)::after {

        display: none;

    }

}

@media (max-width: 768px) {

    .hero-course {

        padding: 24px 20px 50px;

    }

    .hero-course__title {

        font-size: 42px;

    }

    .hero-course__text {

        font-size: 16px;

    }

    .hero-course__actions {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-course__btn {

        width: 100%;

    }

    .hero-course__circle {

        display: none;

    }

    .hero-course__features {

        grid-template-columns: 1fr;

        padding: 22px 18px;

    }

    .hero-course__feature {

        padding: 0;

    }

    .hero-course::after,
    .hero-course__feature::after {

        display: none;

    }

}