/* =========================================================
   CTA COURSE
========================================================= */

.cta-course {

    padding: 0 40px 60px;

    background: var(--color-white);

}

/* =========================================================
   CONTAINER
========================================================= */

.cta-course__container {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 18px 24px;

    border-radius: var(--radius-md);

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #03143f 0%,
            #07194b 55%,
            #0d2a78 100%
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: var(--shadow-sm);

}

/* =========================================================
   LEFT
========================================================= */

.cta-course__left {

    display: flex;

    align-items: center;

    gap: 16px;

}

/* =========================================================
   ICON
========================================================= */

.cta-course__icon {

    width: 64px;
    height: 64px;

    min-width: 64px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1d4ed8 100%
        );

    display: flex;

    align-items: center;
    justify-content: center;

}

.cta-course__icon svg {

    width: 30px;
    height: 30px;

    stroke: var(--color-white);

    stroke-width: 1.8;

}

/* =========================================================
   CONTENT
========================================================= */

.cta-course__content {

    color: var(--color-white);

}

/* =========================================================
   TITLE
========================================================= */

.cta-course__title {

    font-size: 18px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-white);

    margin-bottom: 4px;

}

/* =========================================================
   TEXT
========================================================= */

.cta-course__text {

    font-size: 13px;

    line-height: 1.6;

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   BUTTON
========================================================= */

.cta-course__btn {

    height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: var(--radius-sm);

    background: var(--color-secondary);

    color: var(--color-white);

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition-fast);

}

.cta-course__btn svg {

    width: 16px;
    height: 16px;

    stroke-width: 2.4;

}

.cta-course__btn:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .cta-course__container {

        flex-direction: column;

        align-items: flex-start;

    }

    .cta-course__btn {

        width: 100%;

    }

}

@media (max-width: 768px) {

    .cta-course {

        padding: 0 25px 50px;

    }

    .cta-course__container {

        padding: 20px;

    }

    .cta-course__left {

        align-items: flex-start;

    }

    .cta-course__icon {

        width: 56px;
        height: 56px;

        min-width: 56px;

    }

    .cta-course__icon svg {

        width: 26px;
        height: 26px;

    }

    .cta-course__title {

        font-size: 16px;

    }

    .cta-course__text {

        font-size: 12px;

    }

    .cta-course__btn {

        width: 100%;

        height: 46px;

        font-size: 14px;

    }

}