/**
 * PSK News Theme - Multi-Layout System
 * Layout-uri diferite pentru homepage
 * 
 * @package PSK News Theme
 * @version 4.0
 */

/* ==========================================================================
   VARIABILE CSS GLOBALE - Se suprascriu de scheme de culori
   ========================================================================== */

:root {
    --n24-primary: #1a1a2e;
    --n24-accent: #0066cc;
    --n24-accent-hover: #0052a3;
    --n24-secondary: #e74c3c;
    --n24-bg: #ffffff;
    --n24-bg-alt: #f8f9fa;
    --n24-text: #333333;
    --n24-text-muted: #6c757d;
    --n24-border: #e5e5e5;
    --n24-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --n24-shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
    --n24-radius: 8px;
    --n24-font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --n24-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   BREAKING NEWS BAR
   ========================================================================== */

.n24-breaking-bar {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.n24-breaking-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: breaking-shine 3s infinite;
}

@keyframes breaking-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.n24-breaking-bar .n24-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.n24-breaking-label {
    background: #fff;
    color: #dc3545;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
    animation: pulse-label 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-label {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.n24-breaking-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.n24-breaking-link:hover {
    text-decoration: underline;
    color: #fff;
}

/* ==========================================================================
   LAYOUT 1: CLASSIC (Lista cu sidebar - design actual)
   ========================================================================== */

/* Classic folosește stilurile existente din style.css */

/* ==========================================================================
   LAYOUT 2: MAGAZINE (Hero mare + sidebar articole)
   ========================================================================== */

.layout-magazine .n24-hero-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    padding: 20px 0;
}

.layout-magazine .n24-hero-main {
    position: relative;
}

.layout-magazine .n24-hero-article {
    position: relative;
    border-radius: var(--n24-radius);
    overflow: hidden;
    background: var(--n24-bg);
    box-shadow: var(--n24-shadow);
    height: 100%;
}

.layout-magazine .n24-hero-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.layout-magazine .n24-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.layout-magazine .n24-hero-article:hover .n24-hero-image img {
    transform: scale(1.03);
}

.layout-magazine .n24-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
}

.layout-magazine .n24-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
}

.layout-magazine .n24-hero-category {
    display: inline-block;
    background: var(--n24-accent);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 12px;
    text-decoration: none;
}

.layout-magazine .n24-hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.layout-magazine .n24-hero-title a {
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.layout-magazine .n24-hero-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.layout-magazine .n24-hero-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Hero Sidebar */
.layout-magazine .n24-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.layout-magazine .n24-sidebar-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    background: var(--n24-bg);
    border-radius: var(--n24-radius);
    padding: 10px;
    box-shadow: var(--n24-shadow);
    transition: all 0.3s ease;
}

.layout-magazine .n24-sidebar-item:hover {
    box-shadow: var(--n24-shadow-hover);
    transform: translateX(-3px);
}

.layout-magazine .n24-sidebar-image {
    width: 100px;
    height: 70px;
    border-radius: calc(var(--n24-radius) - 4px);
    overflow: hidden;
}

.layout-magazine .n24-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layout-magazine .n24-sidebar-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout-magazine .n24-sidebar-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--n24-accent);
    text-decoration: none;
    margin-bottom: 4px;
}

.layout-magazine .n24-sidebar-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.layout-magazine .n24-sidebar-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-magazine .n24-sidebar-item:hover .n24-sidebar-title a {
    color: var(--n24-accent);
}

.layout-magazine .n24-sidebar-time {
    font-size: 11px;
    color: var(--n24-text-muted);
}

/* Magazine Main Content */
.layout-magazine .n24-main-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--n24-border);
}

/* ==========================================================================
   LAYOUT 3: GRID (Carduri în grid, fără sidebar)
   ========================================================================== */

.layout-grid .n24-hero-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.layout-grid .n24-hero-card {
    background: var(--n24-bg);
    border-radius: var(--n24-radius);
    overflow: hidden;
    box-shadow: var(--n24-shadow);
    transition: all 0.3s ease;
}

.layout-grid .n24-hero-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.layout-grid .n24-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--n24-shadow-hover);
}

.layout-grid .n24-hero-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.layout-grid .n24-hero-card:first-child .n24-hero-card-image {
    aspect-ratio: 16/9;
}

.layout-grid .n24-hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.layout-grid .n24-hero-card:hover .n24-hero-card-image img {
    transform: scale(1.05);
}

.layout-grid .n24-hero-card-content {
    padding: 15px;
}

.layout-grid .n24-hero-card:first-child .n24-hero-card-content {
    padding: 20px;
}

.layout-grid .n24-hero-card-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--n24-accent);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.layout-grid .n24-hero-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.layout-grid .n24-hero-card:first-child .n24-hero-card-title {
    font-size: 22px;
}

.layout-grid .n24-hero-card-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-grid .n24-hero-card:hover .n24-hero-card-title a {
    color: var(--n24-accent);
}

.layout-grid .n24-hero-card-time {
    font-size: 11px;
    color: var(--n24-text-muted);
}

/* Grid Main - fără sidebar */
.layout-grid .n24-main-content {
    padding: 30px 0;
    border-top: 1px solid var(--n24-border);
}

.layout-grid .n24-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ==========================================================================
   LAYOUT 4: NEWSPAPER (Stil ziar cu coloane)
   ========================================================================== */

.layout-newspaper .n24-hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 3px solid var(--n24-primary);
}

.layout-newspaper .n24-hero-main {
    border-right: 1px solid var(--n24-border);
    padding-right: 20px;
}

.layout-newspaper .n24-hero-image {
    margin-bottom: 15px;
}

.layout-newspaper .n24-hero-image img {
    width: 100%;
    height: auto;
}

.layout-newspaper .n24-hero-category {
    display: inline-block;
    background: var(--n24-primary);
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-decoration: none;
}

.layout-newspaper .n24-hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.layout-newspaper .n24-hero-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-newspaper .n24-hero-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--n24-text);
    column-count: 2;
    column-gap: 20px;
}

/* Newspaper Columns */
.layout-newspaper .n24-newspaper-column {
    border-right: 1px solid var(--n24-border);
    padding-right: 20px;
}

.layout-newspaper .n24-newspaper-column:last-child {
    border-right: none;
    padding-right: 0;
}

.layout-newspaper .n24-column-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--n24-border);
}

.layout-newspaper .n24-column-item:last-child {
    border-bottom: none;
}

.layout-newspaper .n24-column-image {
    margin-bottom: 10px;
}

.layout-newspaper .n24-column-image img {
    width: 100%;
    height: auto;
}

.layout-newspaper .n24-column-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.layout-newspaper .n24-column-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-newspaper .n24-column-title a:hover {
    color: var(--n24-accent);
}

.layout-newspaper .n24-column-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--n24-text-muted);
}

.layout-newspaper .n24-column-time {
    font-size: 11px;
    color: var(--n24-text-muted);
    margin-top: 8px;
}

/* Newspaper Main */
.layout-newspaper .n24-main-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.layout-newspaper .n24-main-column {
    border-right: 1px solid var(--n24-border);
    padding-right: 20px;
}

.layout-newspaper .n24-main-column:last-child {
    border-right: none;
    padding-right: 0;
}

/* ==========================================================================
   LAYOUT 5: MINIMAL (Design curat, mult spațiu)
   ========================================================================== */

.layout-minimal .n24-hero-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.layout-minimal .n24-hero-main {
    text-align: center;
    margin-bottom: 40px;
}

.layout-minimal .n24-hero-image {
    margin-bottom: 30px;
}

.layout-minimal .n24-hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.layout-minimal .n24-hero-category {
    display: inline-block;
    color: var(--n24-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-decoration: none;
}

.layout-minimal .n24-hero-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.layout-minimal .n24-hero-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-minimal .n24-hero-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: var(--n24-text-muted);
    max-width: 700px;
    margin: 0 auto 20px;
}

.layout-minimal .n24-hero-meta {
    font-size: 13px;
    color: var(--n24-text-muted);
}

/* Minimal Feed */
.layout-minimal .n24-feed-minimal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.layout-minimal .n24-minimal-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--n24-border);
    align-items: center;
}

.layout-minimal .n24-minimal-item:last-child {
    border-bottom: none;
}

.layout-minimal .n24-minimal-content {
    order: 1;
}

.layout-minimal .n24-minimal-image {
    order: 2;
}

.layout-minimal .n24-minimal-item:nth-child(even) .n24-minimal-content {
    order: 2;
}

.layout-minimal .n24-minimal-item:nth-child(even) .n24-minimal-image {
    order: 1;
}

.layout-minimal .n24-minimal-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.layout-minimal .n24-minimal-cat {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--n24-accent);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.layout-minimal .n24-minimal-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
}

.layout-minimal .n24-minimal-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.layout-minimal .n24-minimal-title a:hover {
    color: var(--n24-accent);
}

.layout-minimal .n24-minimal-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--n24-text-muted);
}

.layout-minimal .n24-minimal-time {
    font-size: 12px;
    color: var(--n24-text-muted);
    margin-top: 10px;
}

/* ==========================================================================
   FEED STYLES (pentru toate layout-urile)
   ========================================================================== */

.n24-feed-list .n24-feed-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--n24-border);
    margin-bottom: 20px;
}

.n24-feed-list .n24-feed-image {
    width: 200px;
    height: 130px;
    border-radius: var(--n24-radius);
    overflow: hidden;
}

.n24-feed-list .n24-feed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.n24-feed-list .n24-feed-item:hover .n24-feed-image img {
    transform: scale(1.05);
}

.n24-feed-list .n24-feed-content {
    display: flex;
    flex-direction: column;
}

.n24-feed-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--n24-accent);
    text-decoration: none;
    margin-bottom: 6px;
}

.n24-feed-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

.n24-feed-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.n24-feed-item:hover .n24-feed-title a {
    color: var(--n24-accent);
}

.n24-feed-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--n24-text-muted);
    margin-bottom: 10px;
}

.n24-feed-meta {
    margin-top: auto;
    font-size: 12px;
    color: var(--n24-text-muted);
}

/* Feed Cards */
.n24-feed-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.n24-feed-cards .n24-feed-card {
    background: var(--n24-bg);
    border-radius: var(--n24-radius);
    overflow: hidden;
    box-shadow: var(--n24-shadow);
    transition: all 0.3s ease;
}

.n24-feed-cards .n24-feed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--n24-shadow-hover);
}

.n24-feed-cards .n24-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.n24-feed-cards .n24-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.n24-feed-cards .n24-feed-card:hover .n24-card-image img {
    transform: scale(1.05);
}

.n24-feed-cards .n24-card-content {
    padding: 15px;
}

.n24-feed-cards .n24-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

.n24-feed-cards .n24-card-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.n24-feed-cards .n24-feed-card:hover .n24-card-title a {
    color: var(--n24-accent);
}

/* ==========================================================================
   SIDEBAR WIDGETS (pentru layout-urile cu sidebar)
   ========================================================================== */

.n24-sidebar-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 20px;
    align-self: start;
}

.n24-widget {
    background: var(--n24-bg);
    border-radius: var(--n24-radius);
    padding: 20px;
    box-shadow: var(--n24-shadow);
}

.n24-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--n24-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--n24-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.n24-widget-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.n24-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--n24-border);
}

.n24-widget-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.n24-widget-rank {
    width: 28px;
    height: 28px;
    background: var(--n24-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.n24-widget-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.n24-widget-item-title a {
    color: var(--n24-primary);
    text-decoration: none;
}

.n24-widget-item:hover .n24-widget-item-title a {
    color: var(--n24-accent);
}

.n24-widget-time {
    font-size: 11px;
    color: var(--n24-text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.n24-section {
    padding: 30px 0;
    border-top: 1px solid var(--n24-border);
}

.n24-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--n24-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--n24-accent);
    display: inline-block;
}

/* ==========================================================================
   RESPONSIVE - Layout Magazine
   ========================================================================== */

@media (max-width: 1024px) {
    .layout-magazine .n24-hero-section {
        grid-template-columns: 1fr;
    }
    
    .layout-magazine .n24-hero-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .layout-magazine .n24-main-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .layout-magazine .n24-hero-title {
        font-size: 22px;
    }
    
    .layout-magazine .n24-hero-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .layout-magazine .n24-sidebar-item {
        grid-template-columns: 90px 1fr;
    }
}

@media (max-width: 576px) {
    .layout-magazine .n24-hero-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE - Layout Grid
   ========================================================================== */

@media (max-width: 1024px) {
    .layout-grid .n24-hero-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .layout-grid .n24-hero-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .layout-grid .n24-feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .layout-grid .n24-hero-section {
        grid-template-columns: 1fr;
    }
    
    .layout-grid .n24-hero-card:first-child {
        grid-column: span 1;
    }
    
    .layout-grid .n24-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .layout-grid .n24-feed-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE - Layout Newspaper
   ========================================================================== */

@media (max-width: 1024px) {
    .layout-newspaper .n24-hero-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .layout-newspaper .n24-hero-main {
        grid-column: span 2;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--n24-border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .layout-newspaper .n24-hero-excerpt {
        column-count: 1;
    }
    
    .layout-newspaper .n24-main-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .layout-newspaper .n24-hero-section {
        grid-template-columns: 1fr;
    }
    
    .layout-newspaper .n24-hero-main {
        grid-column: span 1;
    }
    
    .layout-newspaper .n24-newspaper-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--n24-border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .layout-newspaper .n24-main-content {
        grid-template-columns: 1fr;
    }
    
    .layout-newspaper .n24-main-column {
        border-right: none;
        padding-right: 0;
    }
}

/* ==========================================================================
   RESPONSIVE - Layout Minimal
   ========================================================================== */

@media (max-width: 768px) {
    .layout-minimal .n24-hero-title {
        font-size: 28px;
    }
    
    .layout-minimal .n24-minimal-item {
        grid-template-columns: 1fr;
    }
    
    .layout-minimal .n24-minimal-content,
    .layout-minimal .n24-minimal-image {
        order: unset !important;
    }
    
    .layout-minimal .n24-minimal-image {
        margin-bottom: 15px;
    }
    
    .layout-minimal .n24-minimal-image img {
        height: 200px;
    }
}

/* ==========================================================================
   RESPONSIVE - Feed
   ========================================================================== */

@media (max-width: 1024px) {
    .n24-feed-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .n24-feed-list .n24-feed-item {
        grid-template-columns: 140px 1fr;
    }
    
    .n24-feed-list .n24-feed-image {
        width: 140px;
        height: 95px;
    }
    
    .n24-feed-list .n24-feed-excerpt {
        display: none;
    }
}

@media (max-width: 576px) {
    .n24-feed-list .n24-feed-item {
        grid-template-columns: 1fr;
    }
    
    .n24-feed-list .n24-feed-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .n24-feed-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE - Breaking News
   ========================================================================== */

@media (max-width: 768px) {
    .n24-breaking-bar .n24-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .n24-breaking-link {
        white-space: normal;
    }
}
