.elementor-192 .elementor-element.elementor-element-1206939{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-677e9ac *//* PAGE WIDTH CONTROL */
.elementor-widget-shortcode {
    max-width: 1100px;
    margin: auto;
}

/* 🔴 FEATURED BIG NEWS */
.featured-news {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-news h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0 10px;
    line-height: 1.3;
}

.featured-news h2 a {
    text-decoration: none;
    color: #111;
}

.featured-news h2 a:hover {
    color: #e60023; /* news red */
}

.featured-news p {
    font-size: 15px;
    color: #555;
}

/* 🟦 GRID LAYOUT */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* 📰 CARD STYLE */
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* IMAGE */
.news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* TITLE */
.news-card h3 {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 12px;
    line-height: 1.4;
}

.news-card h3 a {
    text-decoration: none;
    color: #111;
}

.news-card h3 a:hover {
    color: #e60023;
}

/* OPTIONAL CATEGORY TAG (future use) */
.news-card::before {
    content: "KERALA NEWS";
    position: absolute;
    background: #0a8f3c;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    margin: 8px;
    border-radius: 3px;
}

/* FIX POSITIONING */
.news-card {
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-news img {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .featured-news img {
        height: 220px;
    }

    .featured-news h2 {
        font-size: 20px;
    }
}/* End custom CSS */