/* =========================================================
   PROGRAMS SECTION
========================================================= */

.programs-section {
    width: 100%;

    padding: 55px 0 50px;

    box-sizing: border-box;
}



/* =========================================================
   SECTION TITLE
========================================================= */

.programs-section-title {
    margin: 0 0 28px;

    font-family: inherit;

    line-height: 1.2;

    font-weight: 700;

    color: #080808;
}


/* =========================================================
   PROGRAM LIST
========================================================= */

.programs-list {
    display: flex;

    flex-direction: column;

    gap: 36px;
}


/* =========================================================
   PROGRAM CARD
========================================================= */

.program-card {
    display: grid;

    grid-template-columns: 45% minmax(0, 1fr);

    gap: 30px;

    width: 100%;

    padding: 28px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 7px;
}


/* =========================================================
   IMAGE
========================================================= */

.program-card-image {
    width: 100%;

    height: 538px;

    overflow: hidden;

    border-radius: 6px;
}


.program-card-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================================
   CONTENT
========================================================= */

.program-card-content {
    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 0;
}


/* =========================================================
   TITLE
========================================================= */

.program-card-title {
    margin: 0 0 14px;

    font-family: inherit;

    font-size: 48px;

    line-height: 1.05;

    font-weight: 700;

    color: #080808;
}


/* =========================================================
   SUBTITLE
========================================================= */

.program-card-subtitle {
    margin: 0 0 18px;

    font-size: 22px;

    line-height: 1.45;

    color: #555555;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.program-card-description {
    margin: 0 0 12px;


    line-height: 1.55;

    color: #555555;
}


.program-card-description p {
    margin: 0 0 8px;
}


.program-card-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURES
========================================================= */

.program-card-features {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin: 0 0 18px;

    padding: 0;

    list-style: none;
}


.program-card-features li {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    line-height: 1.4;

    color: #515151;
}


/* =========================================================
   FEATURE CHECKMARK
========================================================= */

.program-feature-check {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 20px;

    height: 20px;

    background: #0C6AA5;

    border-radius: 50%;

    color: #ffffff;
}


.program-feature-check svg {
    width: 13px;

    height: 13px;
}


.program-feature-text {
    display: block;

    min-width: 0;
}


/* =========================================================
   BOTTOM ROW
========================================================= */

.program-card-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-top: auto;
}


/* =========================================================
   PRICE AREA
========================================================= */

.program-price-area {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


/* =========================================================
   PRICE LABEL
========================================================= */

.program-price-label {
    margin-bottom: 3px;

    line-height: 1.3;

    color: #666666;
}


/* =========================================================
   PRICE
========================================================= */

.program-price {
    display: flex;

    align-items: baseline;

    gap: 12px;
}


.program-price-amount {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;

    background: radial-gradient(84.02% 84.02% at 50% 15.98%,
            #0C6AA5 0%,
            #021927 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.program-price-unit {
    line-height: 1;

    font-weight: 600;

    color: #003d5b;
}


/* =========================================================
   PRICE FALLBACK
========================================================= */

.program-price-fallback {
    max-width: 230px;

    margin: 0;

    line-height: 1.35;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.no-programs {
    padding: 40px 0;

    text-align: center;


    color: #666666;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .programs-container {
        width: calc(100% - 80px);
    }


    .program-card {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 22px;
    }


    .program-card-image {
        height: 320px;
    }


    .program-card-title {
        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .programs-section {
        padding: 45px 0 60px;
    }


    .programs-container {
        width: calc(100% - 40px);
    }


    .programs-section-title {
        font-size: 24px;

        margin-bottom: 20px;
    }


    .programs-list {
        gap: 20px;
    }


    .program-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 16px;
    }


    .program-card-image {
        height: 230px;
    }


    .program-card-title {
        font-size: 28px;

        line-height: 1.1;
    }


    .program-card-subtitle {
        font-size: 18px;

        margin-bottom: 15px;
    }




    .program-card-features {
        gap: 7px;
    }


    .program-card-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 16px;
    }


    .program-consultation-button {
        width: 100%;
    }

}