/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #222;
} */

.programs {
    padding: 60px 24px;
}

.container {
    max-width: 900px;
    margin: auto;
}

.heading {
    text-align: center;
    margin-bottom: 50px;
}

.heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'SatoshiBlack';
}

.heading p {
    /* color: #666; */
    font-size: 15px;
    max-width: 520px;
    margin: auto;
    line-height: 1.6;
    font-family: SatoshiRegular;
}

/* program list */

.program-list {
    border-top: 1px solid #e9e9e9;
}

.program-item {
    padding: 24px 0;
    border-bottom: 1px solid #e9e9e9;
    cursor: pointer;
}

.program-left h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'SatoshiRegular';
}

.program-left p {
    color: #666;
    font-size: 14px;
    font-family: 'SatoshiRegular';
}

.program-right {
    margin-top: 15px;
    display: flex;
    align-items: center;
    /* gap: 12px; */
    position: relative;
}

.apply-btns {
    background: #e1e1e1;
    color: #000;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.badge {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    color: #fff;
    font-weight: 600;
}

.ap-pills {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 5px 10px;

    font-size: 11px;
    font-weight: 600;

    color: #fff;

    background: linear-gradient(90deg, #ff7a18, #ffb347);
    border-radius: 20px;

    line-height: 1;
}

.ap-pills img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.program-fire {
    width: 20px;
}

/* .grey {
    background: #9c9c9cb0;
} */

/* -------------------------
   Responsive (min-width)
--------------------------*/

@media (min-width:768px) {

    .program-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .program-right {
        margin-top: 0;
    }

    .program-left h3 {
        font-size: 20px;
    }

    .heading h2 {
        font-size: 36px;
    }

    .ap-pills {
        top: 5px;
        right: 124%;
    }

}

@media (min-width:1024px) {

    .programs {
        padding: 50px 20px;
    }

    .heading h2 {
        font-size: 40px;
    }

}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1260px;
    }
}