/* Header */
header {
    background: url(../../../images/common/pattern-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.header-title {
    font-size: 36px;
    color: var(--white);
    text-transform: uppercase;
    margin: 15px 0;
}

.header-title::before {
    content: ' ';
    position: absolute;
    border-bottom: 4px solid var(--accent);
    width: 10%;
    text-align: center;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.lastest-divider {
    margin-top: 8px;
    margin-bottom: 48px;
    border: 3px solid var(--secondary);
    width: 12%;
}
/* End Header */

/* Promosi List */
.promosi-card {
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.35);
}

.promosi-card .card-header {
    background-color: #1470B8;
}

.promosi-card .fas,
.promosi-card h2{
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.promosi-card ul {
    padding-left: 16px;
}

.promosi-card ul li {
    margin-bottom: 8px;
}

.promosi-card ul li:last-child {
    margin-bottom: 0px;
}

.promosi-card iframe {
    border-radius: 16px;
    width: 100%;
    height: 500px;
}
/* End Promosi List */


/* Program List */
.program-card {
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    transform: translateY(0);
    transition: var(--transition);
}

.program-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.program-card:hover {
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 50%);
    transform: translateY(-8px);
}

.program-gutter {
    row-gap: 42px;
}
/* End Program List */


/* Detail Program */
.detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.detail-badge {
    background-color: var(--secondary);
    border-radius: 16px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: fit-content;
    margin-bottom: 24px;
}

.detail-gutter {
    row-gap: 42px;
}

.detail-container {
    transition: var(--transition);
}

.detail-container .detail-card {
    transition: var(--transition);
}

.detail-container:hover .detail-card {
    transform: translateY(-8px);
}

.detail-container h2 {
    transition: var(--transition);
}

.detail-container:hover h2 {
    color: #d20909;
}
/* End Detail Program */

@media (max-width: 997.98px) {
    .promosi-card iframe {
        height: 300px;
    }
}
