.elementor-196 .elementor-element.elementor-element-0ed924c{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-65d690d *//* PAGE WIDTH CONTROL */
.elementor-widget-shortcode {
    max-width: 1100px;
    margin: auto;
}

/* 🔵 FEATURED TECH 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: #0077ff; /* tech blue */
}

.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: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px 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: #0077ff;
}

/* 🏷️ TECH TAG */
.news-card::before {
    content: "TECH";
    position: absolute;
    top: 0;
    left: 0;
    background: #0077ff;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 8px;
    border-radius: 4px;
}

/* ⚡ OPTIONAL: subtle glow effect */
.news-card:hover::before {
    background: #005bd1;
}

/* 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 */