
 :root {
    --accent-color: var(--brand-colour, #ff6b6b);
    --text-main: #1a1a1a;
    --text-muted: #6c757d;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.news-page {
    background-color: #fcfcfd;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Enhanced Ad Banner --- */
.banner-wrapper {
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.banner-wrapper:hover {
    transform: translateY(-5px);
}

.banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: 30px;
    border-radius: 20px;
    max-width: 80%;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* --- Section Header --- */
.section-title-box {
    padding: 40px 0 20px;
}

.recipe_text_top {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    position: relative;
}

.recipe_text_top::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 10px;
    border-radius: 2px;
}

/* --- Modern Grid & Cards --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.box_img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .box_img img {
    transform: scale(1.1);
}

.content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-main);
    transition: color 0.2s;
}

.news-card a { text-decoration: none; }
.news-card:hover h2 { color: var(--accent-color); }

.meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.meta-info i { color: var(--accent-color); }

.description-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
    .banner h1 { font-size: 1.8rem; }
    .banner { height: 250px; }
}