.elementor-198 .elementor-element.elementor-element-48d2e6a{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-cc38d5f *//* PAGE WIDTH CONTROL */
.elementor-widget-shortcode {
    max-width: 1100px;
    margin: auto;
}

/* 🟢 FEATURED SPORTS NEWS */
.featured-news {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 20%;
    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: #0a7f3f; /* sports green */
}

.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;
    position: relative;
}

.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: #0a7f3f;
}

/* 🏷️ SPORTS TAG */
.news-card::before {
    content: "SPORTS";
    position: absolute;
    top: 0;
    left: 0;
    background: #0a7f3f;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 8px;
    border-radius: 3px;
}

/* 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 */