/* ==========================================================================
   Featured on Aaj Tak - Custom Stylesheet
   Created to extract the "Aaj Tak" section for use in other projects.
   ========================================================================== */

:root {
    /* Design Tokens / Variables */
    --tg-body-font-family: 'DM Sans', sans-serif;
    --tg-heading-font-family: 'DM Sans', sans-serif;
    --tg-highlight-font-family: 'DM Sans', sans-serif;
    
    /* Color Palette */
    --tg-theme-primary: #80aa28;         /* The green color used for Aaj Tak highlight */
    --tg-heading-color: #262727;         /* Heading text color */
    --tg-color-smoke: #F3F9F3;           /* Light background color for wrapper */
    --tg-color-white-default: #ffffff;   /* Pure white */
}

/* Base resets & utilities for container integration */
.testimonial-area-4 {
    font-family: var(--tg-body-font-family);
    -webkit-font-smoothing: antialiased;
}

.fix {
    overflow: hidden;
}

/* --- Section Title --- */
.section__title {
    margin-bottom: 25px;
}

.section__title .title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 3.12rem;
    line-height: 1.2;
    color: var(--tg-heading-color);
    font-family: var(--tg-heading-font-family);
}

.section__title .title span {
    font-family: var(--tg-highlight-font-family);
    font-style: italic;
}

/* Headline Aaj Tak styling */
.aajtak {
    line-height: 60px !important;
}

.aajtak span {
    color: var(--tg-theme-primary);
}

/* --- Section Container/Wrapper --- */
.testimonial-area-4.news {
    padding-top: 60px;
    padding-bottom: 60px;
}

.testimonial-area-4 .testimonial-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--tg-color-smoke);
    border-radius: 6px;
    overflow: hidden;
}

/* Text Content Area */
.testimonial-area-4 .testimonial-wrapper .content {
    width: calc(100% - 600px);
    padding: 0 100px;
}

/* Video Thumbnail Wrapper */
.testimonial-area-4 .testimonial-wrapper .video-thumb {
    position: relative;
    width: 600px;
    flex-shrink: 0;
}

.testimonial-area-4 .testimonial-wrapper .video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Video Play Button */
.testimonial-area-4 .testimonial-wrapper .video-thumb .vid-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--tg-color-white-default);
    color: var(--tg-heading-color);
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
}

/* Visual play icon correction (adjusting centering for the triangle) */
.testimonial-area-4 .testimonial-wrapper .video-thumb .vid-play-btn i {
    margin-left: 4px;
}

/* Premium Hover Micro-interaction */
.testimonial-area-4 .testimonial-wrapper .video-thumb .vid-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    box-shadow: 0 15px 30px rgba(128, 170, 40, 0.4);
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large screens & Desktops */
@media (max-width: 1399px) {
    .section__title .title {
        font-size: 2.625rem;
    }
}

/* Tablets (landscape) */
@media (max-width: 1199.98px) {
    .testimonial-area-4 .testimonial-wrapper .content {
        width: calc(100% - 400px);
        padding: 40px 50px;
    }
    
    .testimonial-area-4 .testimonial-wrapper .video-thumb {
        width: 400px;
    }
}

/* Tablets (portrait) */
@media (max-width: 991.98px) {
    .testimonial-area-4 .testimonial-wrapper {
        flex-direction: column;
    }
    
    .testimonial-area-4 .testimonial-wrapper .content {
        width: 100%;
        padding: 40px 30px;
    }
    
    .testimonial-area-4 .testimonial-wrapper .video-thumb {
        width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 767.98px) {
    .section__title .title {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .new_cont {
        padding: 23px 10px !important;
    }
    
    .aajtak {
        text-align: center;
        line-height: 1.3 !important;
    }
    
    .news_section {
        margin-bottom: 0px;
    }
    
    .testimonial-area-4 .testimonial-wrapper .content {
        padding: 18px 20px;
    }
    
    .testimonial-area-4 .testimonial-wrapper .video-thumb .vid-play-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 16px;
    }
}

/* Small Mobiles */
@media (max-width: 380px) {
    .testimonial-area-4 .testimonial-wrapper .content {
        padding: 30px 25px;
    }
}
