:root {
    --htu-primary-green: #2e7d32;
    --htu-light-green: #4caf50;
    --htu-bg-green: #e8f5e9;
    --htu-yellow: #FFE733;
    --htu-white: #ffffff;
    --htu-dark-text: #222;
    --htu-gray-text: #666;
    --htu-shadow: rgba(0, 0, 0, 0.15);
}

/* ---------- Page ---------- */
.htu-page {
    width: 100%;
    overflow-x: hidden;
    font-family: system-ui, sans-serif;
}

.htu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Cards Grid ---------- */
.htu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    padding: 60px 0;
}

/* ---------- Card ---------- */
.htu-card {
    background: var(--htu-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 15px 0px #0000000D;
    border: 1px solid #E2E2E2;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.htu-card:hover {
    transform: translateY(-6px);
}

/* ---------- FIXED IMAGE SIZE ---------- */
.htu-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.htu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-htu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ---------- Play Overlay ---------- */
.htu-play-overlay {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255, 255, 255, .6);
    transition: .3s;
}

.htu-thumbnail-wrapper:hover .htu-play-overlay {
    transform: scale(1.15);
    background: rgba(255, 255, 255, .15);
}

/* ---------- Footer ---------- */
.htu-card-footer {
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.htu-card-title {
    font-size: 25px;
    line-height: 1.5;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 75px;
    color: black;
}

/* ---------- LISTING BUTTON ---------- */
.htu-read-more-btn {
    align-self: flex-start;
    background: #00B249;
    color: white;
    padding: 13px 32px;
    border-radius: 100px;
    font-size: 25px;
    line-height: 1.5;
    /* font-weight: 600; */
    text-decoration: none;
    transition: .25s;
}

.htu-read-more-btn:active,
.htu-read-more-btn:focus {
    background: #00B249 !important;
}

/* ---------- CTA ---------- */

.htu-cta {
    padding-top: 60px;
}

.htu-cta-section {
    border-radius: 20px;
    background: #16A34A;
    padding: 60px 20px;
    text-align: center;
}

.htu-cta-title {
    color: white;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.htu-cta-title span {
    /* font-weight: 700; */
    color: #FFE733;
}

.htu-cta-text {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 584px;
    width: 100%;
    margin-inline: auto;
    letter-spacing: 1px;
}

/* CTA BUTTON */
.htu-cta-section .htu-read-more-btn {
    display: inline-block;
    background: white;
    color: #000;
    border: none;
    font-weight: 500;
}

.htu-cta-section .htu-read-more-btn:hover,
.htu-cta-section .htu-read-more-btn:active,
.htu-cta-section .htu-read-more-btn:focus {
    background: var(--htu-yellow) !important;
    color: #000;
}

/* ---------- VIDEO MODAL ---------- */
.htu-single-video{
    margin: 48px 0;
}

.htu-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.htu-video-title {
    font-size: 49px;
    line-height: 62px;
    margin-bottom: 8px;
}

.htu-video-modal-content {
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.htu-video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 38px;
    color: white;
    background: none;
    border: none;
}

.htu-video-wrapper {
    padding-bottom: 56.25%;
    position: relative;
}

.htu-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .htu-cards-grid {
        gap: 20px;
    }

    .htu-card-title {
        font-size: 20px;
        height: 60px;
    }

    .htu-read-more-btn {
        padding: 10px 30px;
        font-size: 20px;
    }

    .htu-card-footer {
        padding: 20px;
    }

    .htu-cta-section {
        padding-block: 40px;
    }

    .htu-cta-title {
        font-size: 30px;
    }

    .htu-cta-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .htu-read-more-btn {
        padding: 10px 30px;
        font-size: 16px;
    }

    .htu-cards-grid {
        grid-template-columns: 1fr;
        padding-block: 40px;
    }

    .htu-cta {
        padding-top: 40px;
    }

    .htu-video-title {
        font-size: 30px;
        line-height: 40px;
    }
}


@media (max-width: 500px) {
    .htu-video-title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .htu-cards-grid {
        padding-block: 30px;
    }

    .htu-cta {
        padding-top: 30px;
    }
}