.spotlight-section {
    padding: 100px 0;
    background: #fdf8f5; /* Light subtle peach background like image */
    position: relative;
    font-family: 'Manrope', sans-serif;
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.spotlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.spotlight-icon {
    font-size: 18px;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.spotlight-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr; /* Exactly like the image ratio */
    gap: 30px;
}

/* Left Card */
.featured-media-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.media-thumb {
    position: relative;
    height: 300px;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.play-video-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.media-info {
    padding: 30px;
    text-align: center;
}

.brand-logo-spot {
    font-weight: 800;
    font-size: 22px;
    color: #ff6933;
    margin-bottom: 15px;
    display: block;
}

.media-info h3 {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}

/* Right Grid */
.news-mentions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.news-logo {
    height: 25px;
    margin-bottom: 20px;
    max-width: 150px;
    object-fit: contain;
}

.news-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Adjusting the vertical line for light bg */
.line-light {
    background-image: linear-gradient(to bottom, #ff6933 50%, transparent 50%);
    opacity: 0.2;
}

/* --- Tablet View (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .spotlight-content {
        grid-template-columns: 1fr; /* Side-by-side se stack layout */
        gap: 40px;
    }

    .featured-media-card {
        max-width: 600px;
        margin: 0 auto; /* Tablet par video card ko center kiya */
    }

    .line-light {
        left: 4%; /* Line ko thoda side kiya */
    }
}

/* --- Mobile View (max-width: 768px) --- */
@media (max-width: 768px) {
    .spotlight-section {
        padding: 60px 0;
    }

    .line-light {
        display: none; /* Mobile par decorative line hide kar di */
    }

    .spotlight-header {
        justify-content: center; /* Heading center align */
        margin-bottom: 40px;
    }

    .media-thumb {
        height: 220px; /* Mobile par image ki height kam ki */
    }

    .brand-logo-spot {
        font-size: 18px;
    }

    .media-info h3 {
        font-size: 16px;
    }

    .news-mentions-grid {
        grid-template-columns: 1fr; /* News cards ko ek ke niche ek kiya */
        gap: 15px;
    }

    .news-card {
        padding: 20px;
        text-align: center;
    }

    .news-logo {
        margin: 0 auto 15px; /* Logo center kiya */
    }
}

/* --- Small Mobile (320px - 480px) --- */
@media (max-width: 480px) {
    .spotlight-header h2 {
        font-size: 18px;
    }

    .play-video-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .news-card p {
        font-size: 13px;
    }
}