/**
 * Laetit Patounes - CSS Custom
 * Bootstrap 5 + Styles personnalisés
 */

/* =================================
   VARIABLES CSS
================================= */
:root {
    /* Couleurs principales */
    --primary: #D4A373;          /* Terracotta doux */
    --primary-dark: #B8916A;
    --primary-light: #E8D5C4;
    
    --secondary: #8B9D83;        /* Vert sauge */
    --secondary-dark: #6A7862;
    --secondary-light: #B8C7B0;
    
    --accent: #C8956E;           /* Bronze doré */
    
    --dark: #2C2416;
    --light: #FDFBF7;
    
    /* Typographie */
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Espacements */
    --section-padding: 5rem 0;
}

/* Bootstrap overrides */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.badge.bg-primary {
    background-color: var(--primary) !important;
}

/* =================================
   BASE
================================= */
body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* =================================
   NAVIGATION
================================= */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* =================================
   HERO / BANNER
================================= */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-pattern.svg') no-repeat center;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

/* =================================
   CARDS
================================= */
.card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* =================================
   SECTIONS
================================= */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* =================================
   STATS / BADGES
================================= */
.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* =================================
   TESTIMONIALS
================================= */
.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-meta {
    font-size: 0.875rem;
    color: #999;
}

.review-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 163, 115, 0.16);
    box-shadow: 0 10px 28px rgba(44,36,22,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(44,36,22,0.11);
}

.review-card .testimonial-text {
    font-style: normal;
    color: #5f5a50;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card .testimonial-meta {
    margin-top: 0.35rem;
}

.review-star-muted {
    color: rgba(243, 178, 29, 0.24);
}

.page-hero-reviews .news-hero-icon {
    background: linear-gradient(145deg, rgba(212, 163, 115, 0.95), rgba(196, 143, 89, 0.9));
}

.reviews-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 430px);
    gap: 2.4rem;
    align-items: center;
}

.reviews-hero-copy {
    max-width: 760px;
}

.reviews-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews-page-alert {
    max-width: 780px;
}

.reviews-summary-panel {
    margin-left: auto;
    width: 100%;
    padding: 1.65rem;
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(212, 163, 115, 0.22), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(252,247,241,0.95));
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: 0 16px 38px rgba(44,36,22,0.09);
}

.reviews-summary-score-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-summary-score {
    width: 92px;
    height: 92px;
    border-radius: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.reviews-summary-copy strong {
    display: block;
    color: var(--dark);
    font-size: 1.06rem;
    margin-bottom: 0.2rem;
}

.reviews-summary-copy span {
    display: block;
    color: #6f6659;
    font-size: 0.96rem;
    line-height: 1.5;
}

.reviews-summary-stars {
    display: flex;
    gap: 0.35rem;
    margin: 1.15rem 0 0.9rem;
    color: #f3b21d;
    font-size: 1.05rem;
}

.reviews-summary-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.reviews-summary-metric {
    display: inline-flex;
    align-items: center;
    padding: 0.44rem 0.84rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(212, 163, 115, 0.18);
    color: #6a6256;
    font-size: 0.82rem;
    font-weight: 600;
}

.reviews-summary-note {
    margin-top: 1rem;
    color: #6a6256;
    line-height: 1.65;
}

.reviews-preview-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 420px);
    gap: 2rem;
    align-items: end;
}

.reviews-preview-copy {
    max-width: 680px;
}

.reviews-preview-panel {
    margin-left: auto;
    width: 100%;
    padding: 1.5rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top right, rgba(139, 157, 131, 0.18), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(252,247,241,0.94));
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: 0 14px 34px rgba(44,36,22,0.08);
}

.reviews-preview-panel-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-preview-score-box {
    width: 78px;
    height: 78px;
    border-radius: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.reviews-preview-score-box.is-empty {
    font-size: 2.1rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(246,243,236,0.96));
    color: #576751;
}

.reviews-preview-score-copy strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.reviews-preview-score-copy span {
    display: block;
    color: #6f6659;
    font-size: 0.95rem;
    line-height: 1.45;
}

.reviews-preview-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 1rem 0 0.85rem;
}

.reviews-preview-stars-label {
    color: #6f6659;
    font-size: 0.9rem;
    font-weight: 600;
}

.reviews-preview-stars-row {
    display: flex;
    gap: 0.35rem;
    color: #f3b21d;
    font-size: 1rem;
}

.reviews-preview-star.is-inactive {
    color: rgba(243, 178, 29, 0.24);
}

.reviews-preview-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.reviews-preview-metric {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(212, 163, 115, 0.18);
    color: #6a6256;
    font-size: 0.82rem;
    font-weight: 600;
}

.reviews-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.reviews-preview-note {
    margin-top: 1rem;
    color: #6a6256;
    line-height: 1.7;
}

.review-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.review-action-link:hover {
    transform: translateY(-2px);
}

.review-action-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-action-arrow {
    font-size: 0.82rem;
    opacity: 0.85;
}

.review-action-primary {
    background: linear-gradient(135deg, #d5a16e, #c88f59);
    border: 1px solid rgba(200, 143, 89, 0.3);
    color: white;
    box-shadow: 0 10px 20px rgba(200, 143, 89, 0.2);
}

.review-action-primary .review-action-icon {
    background: rgba(255,255,255,0.18);
    color: white;
}

.review-action-primary:hover {
    color: white;
    box-shadow: 0 14px 24px rgba(200, 143, 89, 0.24);
}

.review-action-secondary {
    background: white;
    border: 1px solid rgba(212, 163, 115, 0.2);
    color: var(--dark);
}

.review-action-secondary .review-action-icon {
    background: rgba(212, 163, 115, 0.12);
    color: var(--primary-dark);
}

.review-action-secondary:hover {
    color: var(--primary-dark);
    box-shadow: 0 12px 20px rgba(44,36,22,0.08);
}

.review-action-tertiary {
    background: transparent;
    border: 1px dashed rgba(139, 157, 131, 0.42);
    color: #5b6956;
}

.review-action-tertiary .review-action-icon {
    background: rgba(139, 157, 131, 0.14);
    color: #5b6956;
}

.review-action-tertiary:hover {
    color: #4f5c4b;
    border-color: rgba(139, 157, 131, 0.58);
    background: rgba(255,255,255,0.7);
}

.reviews-carousel {
    --reviews-visible: 3;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.reviews-carousel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.reviews-carousel-title {
    margin: 0 0 0.25rem;
    color: var(--dark);
    font-size: 1.45rem;
}

.reviews-carousel-subtitle {
    max-width: 720px;
    color: #6f6659;
    line-height: 1.65;
}

.reviews-carousel-controls {
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}

.reviews-carousel-controls.is-hidden {
    display: none;
}

.reviews-carousel-control {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 163, 115, 0.18);
    border-radius: 999px;
    background: white;
    color: #5f5a50;
    box-shadow: 0 10px 22px rgba(44,36,22,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.reviews-carousel-control:hover {
    transform: translateY(-2px);
    color: var(--primary-dark);
    border-color: rgba(212, 163, 115, 0.28);
    box-shadow: 0 14px 24px rgba(44,36,22,0.1);
}

.reviews-carousel-viewport {
    overflow: hidden;
    scrollbar-width: none;
}

.reviews-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
}

.reviews-carousel-item {
    flex: 0 0 calc((100% - (var(--reviews-visible) - 1) * 1.5rem) / var(--reviews-visible));
    min-width: 0;
}

.reviews-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.reviews-carousel-status {
    color: #7a7268;
    font-size: 0.92rem;
}

.reviews-carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.reviews-carousel-dots.is-hidden {
    display: none;
}

.reviews-carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(212, 163, 115, 0.26);
    transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-carousel-dot.is-active {
    background: #c88f59;
    transform: scale(1.15);
}

.reviews-page-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.reviews-page-toolbar-item {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(212, 163, 115, 0.16);
    color: #6a6256;
    font-size: 0.85rem;
    font-weight: 600;
}

.review-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.review-source-site {
    background: rgba(212, 163, 115, 0.14);
    color: var(--primary-dark);
    border: 1px solid rgba(212, 163, 115, 0.22);
}

.review-source-google {
    background: rgba(139, 157, 131, 0.14);
    color: #576751;
    border: 1px solid rgba(139, 157, 131, 0.24);
}

.review-date {
    color: #7d7468;
    font-size: 0.9rem;
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.review-google-link:hover {
    color: var(--primary);
}

.review-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
    margin-top: 1rem;
}

.review-card-actions .btn {
    border-radius: 999px;
}

.review-card-actions .review-google-link {
    margin-top: 0;
}

.review-page-card {
    background:
        radial-gradient(circle at top right, rgba(212, 163, 115, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,251,247,0.96));
}

.review-process-card {
    padding: 1.9rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(212, 163, 115, 0.14);
    box-shadow: 0 12px 30px rgba(44,36,22,0.08);
}

.review-process-icon {
    width: 62px;
    height: 62px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(145deg, rgba(212, 163, 115, 0.18), rgba(212, 163, 115, 0.08));
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.review-process-icon-sage {
    background: linear-gradient(145deg, rgba(139, 157, 131, 0.2), rgba(139, 157, 131, 0.08));
    color: #576751;
}

.review-process-icon-cream {
    background: linear-gradient(145deg, rgba(248, 236, 221, 0.95), rgba(212, 163, 115, 0.1));
}

.review-process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    color: var(--dark);
}

.review-process-card p {
    color: #6a6256;
    line-height: 1.75;
    margin-bottom: 0;
}

.review-process-link {
    margin-top: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.review-process-link:hover {
    color: var(--primary);
}

.review-process-caption {
    display: inline-block;
    margin-top: 1rem;
    color: #8b8378;
    font-size: 0.88rem;
}

.review-submit-modal .modal-content {
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(212, 163, 115, 0.15), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(252,247,241,0.96));
    box-shadow: 0 20px 50px rgba(44,36,22,0.14);
}

.review-viewer-modal .modal-dialog {
    max-width: 760px;
}

.review-viewer-modal .modal-content {
    border-radius: 1.9rem;
    background:
        radial-gradient(circle at top right, rgba(212,163,115,0.15), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(252,247,241,0.97));
    box-shadow: 0 22px 52px rgba(44,36,22,0.16);
}

.review-viewer-modal .modal-header {
    padding: 1.65rem 1.8rem 0.8rem;
    align-items: flex-start;
}

.review-viewer-header-copy {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.review-viewer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.review-viewer-title {
    font-size: clamp(1.7rem, 2.7vw, 2.4rem);
    line-height: 1.08;
    color: #2f261d;
}

.review-viewer-modal .modal-body {
    padding: 0 1.8rem 1.4rem;
}

.review-viewer-rating {
    display: flex;
    gap: 0.32rem;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: #d7a03f;
}

.review-viewer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.review-viewer-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(212,163,115,0.12);
    color: #77583a;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(212,163,115,0.16);
}

.review-viewer-content {
    color: #4b4033;
    font-size: 1.03rem;
    line-height: 1.85;
}

.review-viewer-content p {
    margin-bottom: 1.25rem;
}

.review-viewer-modal .modal-footer {
    padding: 0 1.8rem 1.7rem;
    gap: 0.8rem;
}

.review-submit-modal .modal-header {
    padding: 1.6rem 1.75rem 0;
}

.review-modal-note {
    color: #6a6256;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-modal-form .form-control,
.review-modal-form .form-select {
    border: 1px solid rgba(212, 163, 115, 0.14);
    background: rgba(255,255,255,0.95);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =================================
   GALERIE
================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =================================
   FORMULAIRES
================================= */
.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 2px solid #E5E7EB;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 163, 115, 0.15);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* =================================
   FOOTER
================================= */
.footer {
    background: linear-gradient(135deg, #1a1614 0%, #2c2416 100%);
}

.footer a:hover {
    color: var(--primary) !important;
}

/* =================================
   BACK TO TOP
================================= */
.btn-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.btn-floating:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* =================================
   UTILITIES
================================= */
.bg-light-custom {
    background-color: #F9FAFB;
}

.text-muted-custom {
    color: #6B7280 !important;
}

.shadow-custom {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

/* =================================
   EMPTY STATES
================================= */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.empty-icon {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* =================================
   PAGE HERO
================================= */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 32%);
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero-news {
    background:
        radial-gradient(circle at top right, rgba(139,157,131,0.28), transparent 24%),
        linear-gradient(135deg, #fbf6ef 0%, #f2e4d3 52%, #ebdfcf 100%);
    border-bottom: 1px solid rgba(212, 163, 115, 0.25);
}

.page-hero-news .section-label {
    color: var(--primary-dark);
}

.page-hero-news .hero-title {
    color: var(--dark);
}

.page-hero-news .hero-subtitle {
    color: #695845;
}

.news-hero-icon {
    width: 120px;
    height: 120px;
    margin-left: auto;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,163,115,0.95), rgba(184,145,106,0.9));
    border: 1px solid rgba(44,36,22,0.08);
    color: white;
    font-size: 3rem;
    box-shadow: 0 16px 36px rgba(184,145,106,0.22);
}

/* =================================
   NEWS
================================= */
.news-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: rgba(212,163,115,0.12);
    border: 1px solid rgba(212,163,115,0.25);
    color: #7a6249;
    font-weight: 600;
}

.news-grid-public {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.news-grid-single {
    grid-template-columns: minmax(340px, 980px);
    justify-content: center;
}

.news-grid-single .news-card {
    display: grid;
    grid-template-columns: minmax(320px, 44%) minmax(0, 56%);
    align-items: stretch;
}

.news-grid-single .news-card-media,
.news-grid-single .news-card-placeholder {
    height: 100%;
    min-height: 100%;
}

.news-grid-single .news-card .card-body {
    padding: 2rem !important;
}

.news-card {
    background: white;
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: 0 10px 30px rgba(44,36,22,0.08);
    border-radius: 1.5rem;
    overflow: hidden;
}

.news-card-media {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.news-card-media-standard {
    background: #f7f0e8;
}

.news-card-media-featured {
    height: 320px;
}

.news-card-media-poster {
    padding: 1rem;
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.14), transparent 28%),
        linear-gradient(180deg, #f4ede4 0%, #fbf7f1 100%);
}

.news-card-media-featured.news-card-media-poster {
    height: 360px;
}

.news-card .card-img-top,
.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-card:hover .news-card-image:not(.news-card-image-poster) {
    transform: scale(1.05);
}

.news-card:hover .news-card-image-poster {
    transform: scale(1.02);
}

.news-card-image-poster {
    object-fit: contain;
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 18px 38px rgba(44,36,22,0.12);
}

.news-card-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(32,23,14,0.58) 0%, rgba(32,23,14,0.12) 48%, transparent 100%);
}

.news-card-media-poster .news-card-media-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.news-card-media-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: #5f4b36;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(32,23,14,0.12);
}

.news-card-featured {
    border-color: rgba(212, 163, 115, 0.35);
    box-shadow: 0 18px 40px rgba(44,36,22,0.12);
}

.news-card-featured .card-body {
    background:
        linear-gradient(180deg, rgba(253,251,247,0.98), rgba(248,242,234,0.98));
}

.news-card-placeholder {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    overflow: hidden;
    color: white;
}

.news-card-cover-terracotta {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 24%),
        linear-gradient(135deg, #d4a373 0%, #b9815d 100%);
}

.news-card-cover-sage {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 24%),
        linear-gradient(135deg, #8b9d83 0%, #64745e 100%);
}

.news-card-cover-sand {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 24%),
        linear-gradient(135deg, #c8956e 0%, #8b6f47 100%);
}

.news-card-cover-midnight {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 24%),
        linear-gradient(135deg, #3d4858 0%, #1f2630 100%);
}

.news-card-cover-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.news-card-cover-decoration span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
}

.news-card-cover-decoration span:first-child {
    width: 180px;
    height: 180px;
    top: -50px;
    right: -36px;
}

.news-card-cover-decoration span:last-child {
    width: 110px;
    height: 110px;
    bottom: 26px;
    right: 40px;
}

.news-card-cover-content {
    position: relative;
    z-index: 2;
    max-width: calc(100% - 92px);
}

.news-card-cover-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.news-card-cover-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 0.9rem;
    text-wrap: balance;
}

.news-card-cover-meta {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
}

.news-card-cover-icon {
    position: absolute;
    right: 1.4rem;
    bottom: 1.35rem;
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 1.6rem;
    color: rgba(255,255,255,0.92);
    z-index: 2;
}

.news-date {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    color: #6b7280;
}

.news-badge-featured {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f8d977;
    color: #3b2c13;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(59,44,19,0.08);
}

.news-card-list .card-body {
    gap: 0.35rem;
    padding: 1.6rem !important;
}

.news-card-list h2,
.news-card-list .h3 {
    font-size: clamp(1.9rem, 2.1vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
}

.news-card-list p.text-muted {
    font-size: 1.02rem;
    line-height: 1.65;
}

.news-article-header {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212,163,115,0.2);
}

.news-article-cover {
    position: relative;
    padding: 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(212,163,115,0.14);
    box-shadow: 0 22px 52px rgba(44,36,22,0.1);
    overflow: hidden;
}

.news-article-cover-poster {
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.16), transparent 26%),
        linear-gradient(180deg, #f5eee6 0%, #fbf7f2 100%);
}

.news-article-cover-editorial {
    background:
        radial-gradient(circle at top right, rgba(139,157,131,0.12), transparent 24%),
        linear-gradient(180deg, #f8f4ee 0%, #fdfaf6 100%);
}

.news-article-cover-image {
    display: block;
    max-height: min(78vh, 980px);
    object-fit: contain;
    background: white;
}

.news-article-cover-placeholder {
    position: relative;
    min-height: 360px;
    padding: 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 18px 42px rgba(44,36,22,0.12);
}

.news-article-cover-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.news-article-cover-content h2 {
    color: white;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.news-article-cover-content p {
    max-width: 46rem;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
}

.news-article-cover-icon {
    position: absolute;
    right: 2.2rem;
    bottom: 2rem;
    width: 90px;
    height: 90px;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    font-size: 2.25rem;
    z-index: 2;
}

.news-article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #433722;
}

.news-article-content p {
    margin-bottom: 1.5rem;
}

.news-inline-type,
.news-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: rgba(212, 163, 115, 0.14);
    color: #7a5a3b;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(212, 163, 115, 0.22);
}

.news-viewer-modal .modal-dialog {
    max-width: 1120px;
}

.news-viewer-modal .modal-content {
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(212,163,115,0.14), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(252,248,243,0.98));
    box-shadow: 0 24px 56px rgba(44,36,22,0.18);
}

.news-viewer-modal .modal-header {
    padding: 1.8rem 2rem 0.9rem;
    align-items: flex-start;
}

.news-viewer-header-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
}

.news-viewer-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.news-viewer-title {
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.02;
    color: #2f261d;
    letter-spacing: -0.035em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-viewer-summary {
    max-width: 50rem;
    color: #6d645b;
    font-size: 1.08rem;
    line-height: 1.8;
}

.news-viewer-modal .modal-body {
    padding: 0 2rem 1.55rem;
}

.news-viewer-stage {
    margin: 0 0 1.5rem;
    padding: 1rem;
    border-radius: 1.9rem;
    border: 1px solid rgba(212,163,115,0.12);
    overflow: hidden;
}

.news-viewer-stage-poster {
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.16), transparent 28%),
        linear-gradient(180deg, #f4ede5 0%, #fbf7f1 100%);
    box-shadow: 0 22px 52px rgba(44,36,22,0.12);
}

.news-viewer-stage-illustrated {
    background:
        radial-gradient(circle at top right, rgba(139,157,131,0.14), transparent 26%),
        linear-gradient(180deg, #f8f4ee 0%, #fdfaf7 100%);
    box-shadow: 0 18px 42px rgba(44,36,22,0.09);
}

.news-viewer-image {
    display: block;
    width: 100%;
    max-height: min(74vh, 920px);
    object-fit: contain;
    border-radius: 1.35rem;
    background: white;
}

.news-viewer-poster-note {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(212,163,115,0.18);
    box-shadow: 0 12px 28px rgba(44,36,22,0.06);
}

.news-viewer-poster-note i {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,163,115,0.14);
    color: #99683f;
    flex-shrink: 0;
}

.news-viewer-poster-note p {
    margin: 0;
    color: #63584d;
    line-height: 1.7;
}

.news-article-poster-note {
    max-width: 44rem;
}

.news-viewer-content {
    max-width: 46rem;
    color: #433722;
    font-size: 1.05rem;
    line-height: 1.9;
}

.news-viewer-content p {
    margin-bottom: 1.4rem;
}

.news-viewer-modal .modal-footer {
    padding: 0 2rem 1.8rem;
    gap: 0.8rem;
    justify-content: flex-end;
}

.featured-news-modal .modal-content {
    border-radius: 2rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(253,251,247,0.98));
}

.featured-news-layout {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.featured-news-layout-image {
    gap: 1.75rem;
}

.featured-news-layout-text-image {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.75rem;
}

.featured-news-layout-text {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    padding: 2rem;
    color: white;
}

.featured-news-text-panel {
    position: relative;
    z-index: 2;
}

.featured-news-visual {
    min-width: 0;
}

.featured-news-image {
    max-height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 44px rgba(44,36,22,0.14);
}

.featured-news-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-news-copy-centered {
    max-width: 44rem;
    margin: 0 auto;
}

.featured-news-meta {
    margin: 0;
    color: #7a6b5f;
    font-size: 0.95rem;
}

.featured-news-meta-light {
    color: rgba(255,255,255,0.82);
}

.featured-news-summary {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.8;
    color: #433722;
}

.featured-news-summary-light {
    color: rgba(255,255,255,0.96);
}

.featured-news-body-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #6b5a4d;
}

.featured-news-body-text-light {
    color: rgba(255,255,255,0.82);
}

.featured-news-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.25rem;
}

.featured-news-actions .btn.disabled {
    opacity: 1;
    pointer-events: none;
}

.featured-news-poster-frame {
    position: relative;
    max-width: 34rem;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #f8f2ea 0%, #f3ebe2 100%);
    box-shadow: 0 24px 60px rgba(44,36,22,0.14);
}

.featured-news-poster-image {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 1.35rem;
    background: white;
}

.featured-news-fallback {
    min-height: 280px;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 1.8rem;
    display: flex;
    align-items: flex-end;
}

.featured-news-fallback-inner {
    position: relative;
    z-index: 2;
    max-width: calc(100% - 82px);
}

.featured-news-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-news-fallback-inner h4 {
    color: white;
    font-size: 1.95rem;
    line-height: 1.1;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.featured-news-fallback-inner p {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.featured-news-fallback-icon {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 64px;
    height: 64px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 1.7rem;
    z-index: 2;
}

.news-preview-shell {
    padding: 1rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.22), transparent 34%),
        linear-gradient(180deg, #f4ede5 0%, #f8f5f1 100%);
    box-shadow: inset 0 0 0 1px rgba(212,163,115,0.12);
}

.news-preview-modal-window {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 46px rgba(44,36,22,0.12);
    overflow: hidden;
}

.news-preview-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0.75rem;
}

.news-preview-modal-header-copy,
.featured-news-modal-header-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.news-preview-modal-header .btn-close[disabled] {
    opacity: 0.35;
    pointer-events: none;
}

.news-preview-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 1.5rem 1rem;
}

.news-preview-modal-heading {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.08;
    color: #2f251c;
    max-width: none;
}

.news-preview-modal-body {
    padding: 0 1.5rem 1.5rem;
}

.news-preview-status {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f3efe8;
    color: #796857;
    font-size: 0.8rem;
    font-weight: 700;
}

.news-preview-status-live {
    background: rgba(87, 165, 120, 0.14);
    color: #2f6b45;
}

.news-preview-sequence-footer {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem 1.5rem;
}

.news-preview-sequence-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.news-preview-sequence-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(212,163,115,0.26);
    transition: transform 0.2s ease, background 0.2s ease;
}

.news-preview-sequence-dot.is-active {
    background: #b9815d;
    transform: scale(1.12);
}

.news-preview-sequence-note {
    max-width: 34rem;
    text-align: center;
    font-size: 0.88rem;
    color: #7d7064;
}

.admin-header-simple {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.news-editor-card {
    border-radius: 1.75rem;
}

.news-editor-step + .news-editor-step {
    margin-top: 2.2rem;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(212, 163, 115, 0.18);
}

.news-editor-step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-editor-step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(212, 163, 115, 0.24);
}

.news-format-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-format-option {
    display: block;
    cursor: pointer;
}

.news-format-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-format-card {
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.35rem;
    background: white;
    border: 1px solid rgba(212,163,115,0.18);
    box-shadow: 0 10px 24px rgba(44,36,22,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-format-option:hover .news-format-card {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(44,36,22,0.09);
}

.news-format-option input:checked + .news-format-card {
    border-color: rgba(212,163,115,0.42);
    background: linear-gradient(180deg, rgba(253,251,247,0.98), rgba(248,242,234,0.98));
    box-shadow: 0 18px 34px rgba(44,36,22,0.12);
}

.news-format-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(212,163,115,0.12);
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.news-format-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.news-format-copy strong {
    color: #3f3428;
}

.news-format-copy span {
    color: #7a6b5f;
    font-size: 0.92rem;
    line-height: 1.55;
}

.news-media-note {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(139,157,131,0.14);
    color: #58705a;
    font-size: 0.82rem;
    font-weight: 700;
}

.news-current-image-card {
    padding: 1rem;
    border-radius: 1.35rem;
    background: #faf7f2;
    border: 1px solid rgba(212,163,115,0.12);
}

.news-current-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
}

.news-upload-preview {
    max-height: 260px;
    object-fit: cover;
    width: 100%;
}

.news-upload-zone {
    display: grid;
    gap: 0.85rem;
}

.news-upload-support {
    font-size: 0.88rem;
    color: #7b7168;
}

.news-upload-inline-error {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(198, 73, 73, 0.1);
    color: #9d3838;
    font-size: 0.9rem;
    border: 1px solid rgba(198, 73, 73, 0.16);
}

.news-upload-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(139,157,131,0.09);
    border: 1px solid rgba(139,157,131,0.14);
    color: #556053;
}

.news-upload-selected-name {
    font-weight: 700;
    word-break: break-word;
}

.news-upload-selected-size {
    flex-shrink: 0;
    font-size: 0.84rem;
    color: #6d7b68;
}

.news-preview-sticky {
    position: sticky;
    top: 5.8rem;
}

.news-visibility-card .form-check-input,
.admin-page .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.news-visibility-card .form-check-input:checked,
.admin-page .form-check-input:checked {
    background-color: #D4A373;
    border-color: #D4A373;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.gallery-thumb-mode-image {
    background: linear-gradient(135deg, #f3ebe2 0%, #e4d5c4 100%);
    color: #8b6f47;
}

.gallery-thumb-mode-text {
    background: linear-gradient(135deg, #8b9d83 0%, #64745e 100%);
    color: white;
}

.gallery-thumb-mode-text_image {
    background: linear-gradient(135deg, #d4a373 0%, #b9815d 100%);
    color: white;
}

.news-studio-hero {
    padding: 2.6rem 0 2.2rem;
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.14), transparent 32%),
        linear-gradient(180deg, #fbf7f2 0%, #f6f1ea 100%);
    border-bottom: 1px solid rgba(212,163,115,0.14);
}

.news-studio-page {
    background:
        radial-gradient(circle at top right, rgba(139,157,131,0.07), transparent 28%),
        linear-gradient(180deg, #fcfaf6 0%, #f7f2eb 100%);
}

.news-studio-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.news-studio-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a87b4f;
    font-weight: 700;
}

.news-studio-title {
    margin: 0 0 0.65rem;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.02;
    color: #2e261f;
}

.news-studio-lead {
    max-width: 52rem;
    color: #6b635c;
    font-size: 1.05rem;
}

.news-studio-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.news-studio-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(44,36,22,0.08) !important;
}

.news-studio-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.news-studio-topbar-badge,
.news-studio-sidebadge,
.news-studio-caption {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(212,163,115,0.12);
    color: #8a6441;
    font-size: 0.83rem;
    font-weight: 700;
    border: 1px solid rgba(212,163,115,0.18);
}

.news-studio-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.news-studio-stepper-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(212,163,115,0.16);
    background: #fffdf9;
    color: #5b5148;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-studio-stepper-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(44,36,22,0.08);
}

.news-studio-stepper-item.is-active {
    border-color: rgba(212,163,115,0.36);
    background: linear-gradient(180deg, #fff9f2 0%, #f7f0e7 100%);
    box-shadow: 0 18px 34px rgba(44,36,22,0.1);
}

.news-studio-stepper-index {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(212,163,115,0.14);
    color: #8a6441;
    font-weight: 700;
}

.news-studio-stepper-item.is-active .news-studio-stepper-index {
    background: linear-gradient(135deg, #d4a373, #b9815d);
    color: white;
}

.news-studio-stepper-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.news-studio-stepper-copy strong {
    color: #332a22;
    font-size: 0.98rem;
}

.news-studio-stepper-copy small {
    color: #82766c;
    font-size: 0.82rem;
}

.news-studio-panel {
    display: none;
}

.news-studio-panel.is-active {
    display: block;
}

.news-studio-panel + .news-studio-panel {
    margin-top: 0;
}

.news-studio-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-studio-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ac7b47;
    font-weight: 700;
}

.news-format-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-format-option-pro,
.news-theme-option {
    display: block;
    cursor: pointer;
}

.news-format-option-pro input,
.news-theme-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-format-card-pro {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.25rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(212,163,115,0.16);
    background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
    box-shadow: 0 14px 28px rgba(44,36,22,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-format-option-pro:hover .news-format-card-pro,
.news-theme-option:hover .news-theme-card {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(44,36,22,0.1);
}

.news-format-option-pro input:checked + .news-format-card-pro,
.news-theme-option input:checked + .news-theme-card {
    border-color: rgba(212,163,115,0.38);
    box-shadow: 0 20px 38px rgba(44,36,22,0.12);
}

.news-format-card-head,
.news-theme-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.news-format-icon-pro,
.news-theme-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,163,115,0.13);
    color: #8a6441;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.news-format-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    color: #7f6248;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(212,163,115,0.16);
}

.news-format-card-pro strong,
.news-theme-card-copy strong {
    color: #352b23;
}

.news-format-desc,
.news-theme-card-desc {
    color: #72685f;
    line-height: 1.65;
    font-size: 0.94rem;
}

.news-format-mini {
    margin-top: auto;
    height: 7.5rem;
    border-radius: 1.15rem;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: end;
    gap: 0.45rem;
    padding: 1rem;
}

.news-format-mini span {
    display: block;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
}

.news-format-mini span:nth-child(1) {
    width: 42%;
    height: 0.85rem;
}

.news-format-mini span:nth-child(2) {
    width: 70%;
    height: 0.65rem;
}

.news-format-mini span:nth-child(3) {
    width: 56%;
    height: 0.65rem;
}

.news-format-mini-image {
    background: linear-gradient(135deg, #d9b088 0%, #b9815d 100%);
}

.news-format-mini-text {
    background: linear-gradient(135deg, #90a386 0%, #718667 100%);
}

.news-format-mini-text_image {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.2) 0 36%, transparent 36% 100%),
        linear-gradient(135deg, #9cab91 0%, #c0b091 100%);
}

.news-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-studio-mode-launch {
    border-radius: 1.85rem;
    background: linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
    border: 1px solid rgba(212,163,115,0.14);
    box-shadow: 0 22px 44px rgba(44,36,22,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-studio-mode-launch:hover {
    transform: translateY(-4px);
    border-color: rgba(212,163,115,0.3);
    box-shadow: 0 28px 52px rgba(44,36,22,0.12);
}

.news-studio-model-shell {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.news-studio-model-summary,
.news-studio-model-guidelines,
.news-layout-section {
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
    border: 1px solid rgba(212,163,115,0.12);
}

.news-studio-model-summary,
.news-layout-section {
    padding: 1.35rem;
}

.news-studio-model-guidelines {
    padding: 1.15rem 1.25rem;
    display: grid;
    gap: 0.9rem;
}

.news-studio-model-rule {
    display: grid;
    gap: 0.3rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(212,163,115,0.12);
}

.news-studio-model-rule:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.news-studio-model-rule strong {
    color: #372d24;
}

.news-studio-model-rule span {
    color: #74695f;
    line-height: 1.65;
}

.news-layout-section {
    margin-bottom: 1.5rem;
}

.news-layout-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.news-layout-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.news-title-style-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.news-layout-option {
    display: block;
    cursor: pointer;
}

.news-title-style-option {
    display: block;
    cursor: pointer;
}

.news-layout-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-title-style-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-layout-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(212,163,115,0.14);
    background: #fffdf9;
    box-shadow: 0 12px 24px rgba(44,36,22,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-layout-option:hover .news-layout-card {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(44,36,22,0.08);
}

.news-title-style-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(212,163,115,0.14);
    background: #fffdf9;
    box-shadow: 0 12px 24px rgba(44,36,22,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-title-style-option:hover .news-title-style-card {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(44,36,22,0.08);
}

.news-title-style-option input:checked + .news-title-style-card {
    border-color: rgba(212,163,115,0.34);
    box-shadow: 0 18px 34px rgba(44,36,22,0.1);
}

.news-title-style-sample {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f1ea 100%);
    border: 1px solid rgba(212,163,115,0.12);
    color: #2f251c;
}

.news-layout-option input:checked + .news-layout-card {
    border-color: rgba(212,163,115,0.34);
    box-shadow: 0 18px 34px rgba(44,36,22,0.1);
}

.news-layout-card-head {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: flex-start;
}

.news-layout-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,163,115,0.13);
    color: #8a6441;
    flex-shrink: 0;
}

.news-layout-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.news-layout-card-copy strong {
    color: #362c23;
}

.news-layout-card-copy small,
.news-layout-desc {
    color: #786d63;
}

.news-layout-thumb {
    min-height: 7.25rem;
    border-radius: 1.05rem;
    position: relative;
    overflow: hidden;
    padding: 0.85rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.24), transparent 34%),
        linear-gradient(135deg, #9fb196 0%, #c8b290 100%);
}

.news-layout-thumb span {
    display: block;
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
}

.news-layout-thumb[data-layout-sample="text-left"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="banner"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="quote"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="stamp"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="serene"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="impact"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="note"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="column"] span:nth-child(1) {
    top: 1rem;
    left: 1rem;
    width: 42%;
    height: 0.9rem;
}

.news-layout-thumb[data-layout-sample="text-left"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="banner"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="quote"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="stamp"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="serene"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="impact"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="note"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="column"] span:nth-child(2) {
    left: 1rem;
    right: 1rem;
    top: 2.45rem;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="text-left"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="banner"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="serene"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="impact"] span:nth-child(3) {
    left: 1rem;
    right: 2.6rem;
    top: 3.45rem;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="text-left"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="banner"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="serene"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="impact"] span:nth-child(4) {
    left: 1rem;
    width: 38%;
    top: 4.45rem;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(4) {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(3) {
    top: 3.45rem;
    width: 68%;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="text-center"] span:nth-child(4) {
    top: 4.45rem;
    width: 42%;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="note"]::before,
.news-layout-thumb[data-layout-sample="stamp"]::before,
.news-layout-thumb[data-layout-sample="column"]::before,
.news-layout-thumb[data-layout-sample="quote"]::before,
.news-layout-thumb[data-layout-sample="left"]::before,
.news-layout-thumb[data-layout-sample="right"]::before,
.news-layout-thumb[data-layout-sample="overlap"]::before,
.news-layout-thumb[data-layout-sample="stack-top"]::before,
.news-layout-thumb[data-layout-sample="stack-bottom"]::before,
.news-layout-thumb[data-layout-sample="frame-left"]::before,
.news-layout-thumb[data-layout-sample="frame-right"]::before,
.news-layout-thumb[data-layout-sample="ribbon"]::before,
.news-layout-thumb[data-layout-sample="editorial"]::before {
    content: "";
    position: absolute;
    border-radius: 0.95rem;
    background: rgba(255,255,255,0.26);
}

.news-layout-thumb[data-layout-sample="note"]::before {
    inset: 0.9rem 0.9rem 0.9rem 48%;
}

.news-layout-thumb[data-layout-sample="quote"] span:nth-child(1) {
    width: 22%;
}

.news-layout-thumb[data-layout-sample="quote"] span:nth-child(3) {
    width: 62%;
    left: 1rem;
    top: 3.65rem;
    height: 0.75rem;
}

.news-layout-thumb[data-layout-sample="quote"] span:nth-child(4) {
    width: 52%;
    left: 1rem;
    top: 4.75rem;
    height: 0.62rem;
}

.news-layout-thumb[data-layout-sample="column"]::before {
    inset: 0.9rem 0.9rem 0.9rem auto;
    width: 28%;
}

.news-layout-thumb[data-layout-sample="column"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="column"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="column"] span:nth-child(4) {
    right: 36%;
}

.news-layout-thumb[data-layout-sample="stamp"]::before {
    top: 0.9rem;
    right: 0.9rem;
    width: 30%;
    height: 30%;
}

.news-layout-thumb[data-layout-sample="left"]::before,
.news-layout-thumb[data-layout-sample="frame-left"]::before,
.news-layout-thumb[data-layout-sample="spotlight"]::before,
.news-layout-thumb[data-layout-sample="editorial"]::before {
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    width: 34%;
}

.news-layout-thumb[data-layout-sample="right"]::before,
.news-layout-thumb[data-layout-sample="frame-right"]::before {
    top: 0.9rem;
    bottom: 0.9rem;
    right: 0.9rem;
    width: 34%;
}

.news-layout-thumb[data-layout-sample="overlap"]::before {
    top: 1rem;
    left: 0.9rem;
    width: 38%;
    bottom: 1rem;
}

.news-layout-thumb[data-layout-sample="stack-top"]::before {
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    height: 34%;
}

.news-layout-thumb[data-layout-sample="stack-bottom"]::before {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    height: 34%;
}

.news-layout-thumb[data-layout-sample="ribbon"]::before {
    left: 0.9rem;
    right: 0.9rem;
    top: 2.45rem;
    height: 1.2rem;
    border-radius: 999px;
}

.news-layout-thumb[data-layout-sample="left"] span,
.news-layout-thumb[data-layout-sample="right"] span,
.news-layout-thumb[data-layout-sample="overlap"] span,
.news-layout-thumb[data-layout-sample="stack-top"] span,
.news-layout-thumb[data-layout-sample="stack-bottom"] span,
.news-layout-thumb[data-layout-sample="frame-left"] span,
.news-layout-thumb[data-layout-sample="frame-right"] span,
.news-layout-thumb[data-layout-sample="ribbon"] span,
.news-layout-thumb[data-layout-sample="editorial"] span {
    height: 0.58rem;
}

.news-layout-thumb[data-layout-sample="left"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(1) {
    top: 1rem;
    left: 44%;
    width: 34%;
}

.news-layout-thumb[data-layout-sample="left"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="left"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="left"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(4) {
    left: 44%;
    right: 1rem;
}

.news-layout-thumb[data-layout-sample="left"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(2) {
    top: 2.25rem;
}

.news-layout-thumb[data-layout-sample="left"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(3) {
    top: 3.25rem;
}

.news-layout-thumb[data-layout-sample="left"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="frame-left"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="editorial"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="spotlight"] span:nth-child(4) {
    top: 4.25rem;
    width: 32%;
}

.news-layout-thumb[data-layout-sample="right"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(1) {
    top: 1rem;
    left: 1rem;
    width: 34%;
}

.news-layout-thumb[data-layout-sample="right"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="right"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="right"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(4) {
    left: 1rem;
    right: 44%;
}

.news-layout-thumb[data-layout-sample="right"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(2) {
    top: 2.25rem;
}

.news-layout-thumb[data-layout-sample="right"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(3) {
    top: 3.25rem;
}

.news-layout-thumb[data-layout-sample="right"] span:nth-child(4),
.news-layout-thumb[data-layout-sample="frame-right"] span:nth-child(4) {
    top: 4.25rem;
    width: 32%;
}

.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(1) {
    top: 1rem;
    left: 40%;
    width: 42%;
}

.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(4) {
    left: 40%;
    right: 1rem;
}

.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(2) {
    top: 2.35rem;
}

.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(3) {
    top: 3.35rem;
}

.news-layout-thumb[data-layout-sample="overlap"] span:nth-child(4) {
    top: 4.35rem;
    width: 28%;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(1),
.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(1) {
    left: 1rem;
    width: 44%;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(1) {
    top: 4.35rem;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(4) {
    left: 1rem;
    right: 1rem;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(2) {
    top: 5.2rem;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(3) {
    display: none;
}

.news-layout-thumb[data-layout-sample="stack-top"] span:nth-child(4) {
    display: none;
}

.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(1) {
    top: 1rem;
}

.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(2),
.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(3) {
    left: 1rem;
    right: 1rem;
}

.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(2) {
    top: 2.15rem;
}

.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(3),
.news-layout-thumb[data-layout-sample="stack-bottom"] span:nth-child(4) {
    display: none;
}

.news-media-textonly-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 1.1rem;
    background: rgba(212,163,115,0.12);
    color: #6f5f52;
    margin-bottom: 1rem;
}

.news-media-textonly-note i {
    color: #a36f44;
    margin-top: 0.2rem;
}

.news-media-textonly-note strong,
.news-media-textonly-note span {
    display: block;
}

.news-media-textonly-note span {
    margin-top: 0.2rem;
}

.news-theme-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(212,163,115,0.14);
    background: white;
    color: #fff;
    box-shadow: 0 14px 28px rgba(44,36,22,0.06);
}

.news-theme-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.news-theme-card-copy small {
    color: inherit;
    opacity: 0.82;
}

.news-theme-swatch {
    position: relative;
    min-height: 8rem;
    border-radius: 1.15rem;
    padding: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
}

.news-theme-swatch-chip,
.news-theme-swatch-line {
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
}

.news-theme-swatch-chip {
    width: 40%;
    height: 0.9rem;
    margin-bottom: 1rem;
}

.news-theme-swatch-line {
    width: 72%;
    height: 0.62rem;
    margin-bottom: 0.45rem;
}

.news-theme-swatch-line.short {
    width: 54%;
}

.news-theme-card.news-theme-sage {
    background: linear-gradient(160deg, #9db08f 0%, #6f8466 100%);
}

.news-theme-card.news-theme-terracotta {
    background: linear-gradient(160deg, #d4a373 0%, #b9734d 100%);
}

.news-theme-card.news-theme-sand {
    background: linear-gradient(160deg, #dcc8ac 0%, #b79f7e 100%);
    color: #3b3026;
}

.news-theme-card.news-theme-midnight {
    background: linear-gradient(160deg, #3d4858 0%, #1f2630 100%);
}

.news-theme-card.news-theme-sand .news-theme-card-copy small,
.news-theme-card.news-theme-sand .news-theme-card-desc {
    color: rgba(59,48,38,0.8);
}

.news-theme-card.news-theme-sand .news-theme-swatch-chip,
.news-theme-card.news-theme-sand .news-theme-swatch-line {
    background: rgba(255,255,255,0.9);
}

.news-studio-upload-card,
.news-studio-block,
.news-studio-final-card,
.news-studio-copy-tip,
.news-studio-sidecard {
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
    border: 1px solid rgba(212,163,115,0.12);
}

.news-studio-upload-card,
.news-studio-block,
.news-studio-final-card {
    padding: 1.35rem;
}

.news-studio-copy-tip {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.15rem;
    margin-top: 1.25rem;
    color: #6f6459;
}

.news-studio-copy-tip i {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,163,115,0.14);
    color: #a36f44;
    flex-shrink: 0;
}

.news-studio-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
}

.news-studio-nav-note {
    color: #7b7168;
    font-size: 0.92rem;
}

.news-studio-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
    gap: 1.5rem;
    align-items: start;
}

.news-studio-main {
    grid-column: 2;
    min-width: 0;
}

.news-studio-rail {
    grid-column: 1;
    display: grid;
    gap: 1.25rem;
    align-self: start;
    position: sticky;
    top: calc(74px + 1.25rem);
}

.news-preview-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(44,36,22,0.08) !important;
}

.news-preview-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.65rem 1.7rem 1.2rem;
}

.news-preview-head-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.news-preview-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(212,163,115,0.12);
    color: #7f6248;
    font-size: 0.82rem;
    font-weight: 700;
}

.news-preview-chip-theme {
    background: rgba(139,157,131,0.14);
    color: #5d755b;
}

.news-preview-shell-pro {
    padding: 1.25rem 1.7rem 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.16), transparent 24%),
        linear-gradient(180deg, #f4eee6 0%, #f8f4ef 100%);
}

.news-preview-footer {
    padding: 0 1.7rem 1.5rem;
}

.news-studio-sidegrid {
    display: grid;
    gap: 0.95rem;
}

.news-studio-sidecard {
    box-shadow: 0 18px 36px rgba(44,36,22,0.08) !important;
}

.news-studio-sideitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(212,163,115,0.12);
}

.news-studio-sideitem:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-studio-sideitem span {
    color: #7a7067;
    font-size: 0.9rem;
}

.featured-news-modal .modal-dialog {
    max-width: 1080px;
}

.featured-news-modal .modal-header {
    padding: 1.9rem 2.2rem 0.65rem;
}

.featured-news-modal .modal-body {
    padding: 0.85rem 2.2rem 2rem !important;
}

.featured-news-modal .modal-content {
    border-radius: 2.25rem;
    border: 1px solid rgba(212,163,115,0.14);
    box-shadow: 0 28px 80px rgba(44,36,22,0.24);
}

.featured-news-modal .btn-close {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.92);
    box-shadow: 0 10px 24px rgba(44,36,22,0.08);
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-news-modal .btn-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(44,36,22,0.12);
}

.featured-news-slide-head {
    margin-bottom: 1.2rem;
    width: 100%;
    text-align: left;
}

.featured-news-slide-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.featured-news-slide-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(212,163,115,0.12);
    color: #9a6c44;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.featured-news-slide-title {
    margin: 0;
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    line-height: 1.02;
    color: #2f251c;
    letter-spacing: -0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title-style-classic {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
}

.news-title-style-poster {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.news-title-style-soft {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.news-title-style-modern {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-news-slide-title.news-title-style-modern,
.news-viewer-title.news-title-style-modern,
.news-title-style-sample.news-title-style-modern {
    max-width: 100%;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.12;
}

.featured-news-scene {
    border-radius: 1.65rem;
}

.featured-news-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.65rem;
    background: var(--news-panel-soft, #f2f3ef);
    border: 1px solid var(--news-panel-border, rgba(0,0,0,0.06));
    box-shadow: 0 18px 38px rgba(44,36,22,0.08);
}

.featured-news-panel-split {
    display: grid;
    grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
    align-items: stretch;
}

.featured-news-panel-poster {
    display: grid;
    grid-template-columns: minmax(360px, 1.12fr) minmax(280px, 0.88fr);
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
}

.featured-news-panel-textonly {
    padding: 1.7rem 1.7rem 1.65rem;
}

.featured-news-panel-visual {
    min-width: 0;
    position: relative;
}

.featured-news-panel-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-width: 0;
    padding: 1.45rem;
    color: var(--news-body-ink, #3e362e);
}

.featured-news-panel-copy-poster {
    gap: 1rem;
    justify-content: center;
    max-width: 22rem;
    padding: 1.45rem 1.2rem 1.45rem 0.4rem;
}

.featured-news-panel-copy-split {
    justify-content: center;
}

.featured-news-panel-copy-text {
    max-width: 48rem;
}

.featured-news-panel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.featured-news-mini-pill,
.featured-news-mini-date {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: var(--news-chip-bg, rgba(255,255,255,0.72));
    color: var(--news-chip-text, #556053);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px var(--news-chip-border, rgba(255,255,255,0.18));
}

.featured-news-panel-summary {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.72;
    color: var(--news-body-ink, #3e362e);
    overflow-wrap: anywhere;
}

.featured-news-panel-body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--news-body-muted, #6f665e);
    overflow-wrap: anywhere;
}

.featured-news-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: stretch;
}

.featured-news-panel-actions-below {
    justify-content: center;
    padding: 0 1rem 1rem;
}

.featured-news-panel-actions .btn.disabled {
    opacity: 1;
    pointer-events: none;
}

.featured-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    padding: 0.95rem 1.45rem;
    border-radius: 1.05rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.featured-news-btn:hover {
    transform: translateY(-1px);
}

.featured-news-btn-primary {
    color: var(--news-button-primary-text, #fffaf5);
    background: var(--news-button-primary-bg, #d4a373);
    border: 1px solid transparent;
    box-shadow: 0 14px 28px rgba(44,36,22,0.12);
}

.featured-news-btn-primary:hover,
.featured-news-btn-primary:focus {
    color: var(--news-button-primary-text, #fffaf5);
    background: var(--news-button-primary-bg-hover, #c89461);
}

.featured-news-btn-secondary {
    color: var(--news-button-secondary-text, #4a4138);
    background: var(--news-button-secondary-bg, rgba(255,255,255,0.72));
    border: 1px solid var(--news-button-secondary-border, rgba(74,65,56,0.16));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.featured-news-btn-secondary:hover,
.featured-news-btn-secondary:focus {
    color: var(--news-button-secondary-text, #4a4138);
    background: var(--news-button-secondary-bg-hover, rgba(255,255,255,0.9));
    border-color: var(--news-button-secondary-border-hover, rgba(74,65,56,0.22));
}

.featured-news-visual-card,
.featured-news-poster-stage,
.featured-news-media-frame {
    position: relative;
    border-radius: 1.35rem;
    overflow: hidden;
    min-height: 100%;
}

.featured-news-visual-card {
    min-height: 260px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-end;
    color: var(--news-contrast, white);
}

.featured-news-visual-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: calc(100% - 82px);
}

.featured-news-visual-copy strong {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: 1.05;
    color: inherit;
}

.featured-news-visual-copy span:last-child {
    color: rgba(255,255,255,0.88);
}

.featured-news-visual-icon {
    position: absolute;
    right: 1.15rem;
    bottom: 1.15rem;
    width: 58px;
    height: 58px;
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.92);
    font-size: 1.45rem;
    z-index: 2;
}

.featured-news-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    z-index: 1;
}

.featured-news-orb.orb-a {
    width: 160px;
    height: 160px;
    top: -48px;
    right: -30px;
}

.featured-news-orb.orb-b {
    width: 92px;
    height: 92px;
    right: 18px;
    bottom: 18px;
}

.featured-news-media-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,255,255,0.54);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.24),
        0 14px 32px rgba(44,36,22,0.08);
}

.featured-news-media-stage {
    min-height: 100%;
    padding: 1rem;
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.36), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
        var(--news-stage-bg, linear-gradient(180deg, #f0ede6 0%, #e8e1d7 100%));
}

.featured-news-media,
.featured-news-poster-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-news-poster-stage {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 0.95rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.34), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
        var(--news-stage-bg, linear-gradient(180deg, #f0ede6 0%, #e8e1d7 100%));
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.34),
        inset 0 0 0 10px rgba(255,255,255,0.08),
        0 18px 34px rgba(44,36,22,0.12);
}

.featured-news-poster-media {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 1.15rem;
    background: white;
    box-shadow:
        0 18px 34px rgba(44,36,22,0.14),
        0 0 0 1px rgba(44,36,22,0.06);
}

.featured-news-poster-copy-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.36);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.18),
        0 12px 24px rgba(44,36,22,0.06);
}

.featured-news-poster-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: var(--news-chip-text, #556053);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-news-poster-note {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.68;
    color: var(--news-body-muted, #6f665e);
    overflow-wrap: anywhere;
}

.featured-news-panel-copy-poster .featured-news-panel-actions {
    margin-top: auto;
}

.featured-news-panel-copy-split .featured-news-panel-actions,
.featured-news-panel-copy-text .featured-news-panel-actions {
    margin-top: 0.35rem;
}

.featured-news-panel-copy-split .featured-news-panel-summary,
.featured-news-panel-copy-poster .featured-news-poster-note {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-panel-copy-split .featured-news-panel-summary {
    -webkit-line-clamp: 3;
}

.featured-news-panel-copy-split .featured-news-panel-body {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-panel-copy-poster .featured-news-poster-note {
    -webkit-line-clamp: 5;
}

.news-theme-sage {
    --news-panel-soft: linear-gradient(145deg, #edf2ea 0%, #d9e3d0 100%);
    --news-panel-border: rgba(111,132,102,0.18);
    --news-body-ink: #324032;
    --news-body-muted: #5e6f5e;
    --news-chip-bg: rgba(255,255,255,0.72);
    --news-chip-text: #5c7058;
    --news-chip-border: rgba(255,255,255,0.18);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #d9e3d0 0%, #c5d2bc 100%);
    --news-button-primary-bg: #d4a373;
    --news-button-primary-bg-hover: #c2915f;
    --news-button-primary-text: #fffaf5;
    --news-button-secondary-bg: rgba(255,255,255,0.72);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.92);
    --news-button-secondary-border: rgba(82,94,79,0.16);
    --news-button-secondary-border-hover: rgba(82,94,79,0.24);
    --news-button-secondary-text: #445342;
    background: linear-gradient(145deg, #9bae95 0%, #70866b 100%);
}

.news-theme-terracotta {
    --news-panel-soft: linear-gradient(145deg, #f6e7dc 0%, #f1d5c0 100%);
    --news-panel-border: rgba(185,115,77,0.18);
    --news-body-ink: #4a3528;
    --news-body-muted: #7c6150;
    --news-chip-bg: rgba(255,248,242,0.82);
    --news-chip-text: #8f593b;
    --news-chip-border: rgba(255,255,255,0.12);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #efd0bd 0%, #e6bea4 100%);
    --news-button-primary-bg: #c78453;
    --news-button-primary-bg-hover: #b87242;
    --news-button-primary-text: #fff9f4;
    --news-button-secondary-bg: rgba(255,255,255,0.76);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.94);
    --news-button-secondary-border: rgba(92,67,50,0.16);
    --news-button-secondary-border-hover: rgba(92,67,50,0.24);
    --news-button-secondary-text: #594133;
    background: linear-gradient(145deg, #d4a373 0%, #b9734d 100%);
}

.news-theme-sand {
    --news-panel-soft: linear-gradient(145deg, #fbf4e8 0%, #f0e3cf 100%);
    --news-panel-border: rgba(183,159,126,0.2);
    --news-body-ink: #43362b;
    --news-body-muted: #756556;
    --news-chip-bg: rgba(255,255,255,0.9);
    --news-chip-text: #7c674f;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #3d3328;
    --news-stage-bg: linear-gradient(180deg, #efe0c5 0%, #e4d1af 100%);
    --news-button-primary-bg: #d4a373;
    --news-button-primary-bg-hover: #c39160;
    --news-button-primary-text: #fffaf5;
    --news-button-secondary-bg: rgba(255,255,255,0.68);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.9);
    --news-button-secondary-border: rgba(90,75,57,0.14);
    --news-button-secondary-border-hover: rgba(90,75,57,0.22);
    --news-button-secondary-text: #57493a;
    background: linear-gradient(145deg, #dcc8ac 0%, #b79f7e 100%);
}

.news-theme-midnight {
    --news-panel-soft: linear-gradient(145deg, #36404e 0%, #252b36 100%);
    --news-panel-border: rgba(61,72,88,0.24);
    --news-body-ink: rgba(255,255,255,0.98);
    --news-body-muted: rgba(235,239,244,0.78);
    --news-chip-bg: rgba(255,255,255,0.12);
    --news-chip-text: rgba(255,255,255,0.94);
    --news-chip-border: rgba(255,255,255,0.08);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #323c4a 0%, #262d37 100%);
    --news-button-primary-bg: #d9a86f;
    --news-button-primary-bg-hover: #e2b57f;
    --news-button-primary-text: #17202c;
    --news-button-secondary-bg: rgba(255,255,255,0.08);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.14);
    --news-button-secondary-border: rgba(255,255,255,0.24);
    --news-button-secondary-border-hover: rgba(255,255,255,0.34);
    --news-button-secondary-text: rgba(255,255,255,0.96);
    background: linear-gradient(145deg, #3d4858 0%, #1f2630 100%);
}

.news-theme-blush {
    --news-panel-soft: linear-gradient(145deg, #f8eceb 0%, #f2d8d4 100%);
    --news-panel-border: rgba(191,122,122,0.18);
    --news-body-ink: #553838;
    --news-body-muted: #806060;
    --news-chip-bg: rgba(255,255,255,0.84);
    --news-chip-text: #9c6666;
    --news-chip-border: rgba(255,255,255,0.16);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #f0d7d3 0%, #e7c4bf 100%);
    --news-button-primary-bg: #c98787;
    --news-button-primary-bg-hover: #ba7575;
    --news-button-primary-text: #fff8f8;
    --news-button-secondary-bg: rgba(255,255,255,0.74);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.92);
    --news-button-secondary-border: rgba(92,67,67,0.14);
    --news-button-secondary-border-hover: rgba(92,67,67,0.22);
    --news-button-secondary-text: #624343;
    background: linear-gradient(145deg, #e4b7b1 0%, #c98787 100%);
}

.news-theme-lagoon {
    --news-panel-soft: linear-gradient(145deg, #e8f5f4 0%, #cfe7e4 100%);
    --news-panel-border: rgba(82,151,146,0.18);
    --news-body-ink: #254846;
    --news-body-muted: #4e7270;
    --news-chip-bg: rgba(255,255,255,0.82);
    --news-chip-text: #44706d;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #cfe7e4 0%, #b4d6d2 100%);
    --news-button-primary-bg: #4f9791;
    --news-button-primary-bg-hover: #42817c;
    --news-button-primary-text: #f8fffe;
    --news-button-secondary-bg: rgba(255,255,255,0.74);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.92);
    --news-button-secondary-border: rgba(45,82,78,0.14);
    --news-button-secondary-border-hover: rgba(45,82,78,0.22);
    --news-button-secondary-text: #305552;
    background: linear-gradient(145deg, #78b9b2 0%, #4f9791 100%);
}

.news-theme-citrus {
    --news-panel-soft: linear-gradient(145deg, #fff7df 0%, #f8e8b7 100%);
    --news-panel-border: rgba(202,156,53,0.18);
    --news-body-ink: #564521;
    --news-body-muted: #7f693b;
    --news-chip-bg: rgba(255,255,255,0.88);
    --news-chip-text: #9a7a2f;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #5d4b1d;
    --news-stage-bg: linear-gradient(180deg, #f8e8b7 0%, #f1da96 100%);
    --news-button-primary-bg: #d59d28;
    --news-button-primary-bg-hover: #c28b19;
    --news-button-primary-text: #fffaf1;
    --news-button-secondary-bg: rgba(255,255,255,0.82);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.94);
    --news-button-secondary-border: rgba(90,72,29,0.14);
    --news-button-secondary-border-hover: rgba(90,72,29,0.22);
    --news-button-secondary-text: #6c551d;
    background: linear-gradient(145deg, #f0cb63 0%, #d59d28 100%);
}

.news-theme-cocoa {
    --news-panel-soft: linear-gradient(145deg, #f2ebe6 0%, #dfd0c2 100%);
    --news-panel-border: rgba(120,89,70,0.18);
    --news-body-ink: #3d2d24;
    --news-body-muted: #6c5648;
    --news-chip-bg: rgba(255,255,255,0.8);
    --news-chip-text: #6f5444;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #dfd0c2 0%, #ceb7a4 100%);
    --news-button-primary-bg: #8f6b56;
    --news-button-primary-bg-hover: #7b5846;
    --news-button-primary-text: #fffaf6;
    --news-button-secondary-bg: rgba(255,255,255,0.72);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.9);
    --news-button-secondary-border: rgba(65,46,35,0.14);
    --news-button-secondary-border-hover: rgba(65,46,35,0.22);
    --news-button-secondary-text: #4a352a;
    background: linear-gradient(145deg, #b58c72 0%, #8f6b56 100%);
}

.news-theme-sky {
    --news-panel-soft: linear-gradient(145deg, #ecf5fb 0%, #d2e6f4 100%);
    --news-panel-border: rgba(93,140,181,0.18);
    --news-body-ink: #25415a;
    --news-body-muted: #5b7893;
    --news-chip-bg: rgba(255,255,255,0.84);
    --news-chip-text: #50779a;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #d2e6f4 0%, #bdd9ec 100%);
    --news-button-primary-bg: #5d8cb5;
    --news-button-primary-bg-hover: #4d7aa2;
    --news-button-primary-text: #f7fbff;
    --news-button-secondary-bg: rgba(255,255,255,0.78);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.94);
    --news-button-secondary-border: rgba(52,79,101,0.14);
    --news-button-secondary-border-hover: rgba(52,79,101,0.22);
    --news-button-secondary-text: #35516a;
    background: linear-gradient(145deg, #89b6db 0%, #5d8cb5 100%);
}

.news-theme-forest {
    --news-panel-soft: linear-gradient(145deg, #e7efe9 0%, #cedecf 100%);
    --news-panel-border: rgba(62,107,78,0.18);
    --news-body-ink: #233625;
    --news-body-muted: #4c6651;
    --news-chip-bg: rgba(255,255,255,0.8);
    --news-chip-text: #45634b;
    --news-chip-border: rgba(255,255,255,0.14);
    --news-contrast: #ffffff;
    --news-stage-bg: linear-gradient(180deg, #cedecf 0%, #b8cdbb 100%);
    --news-button-primary-bg: #3e6b4e;
    --news-button-primary-bg-hover: #325842;
    --news-button-primary-text: #f7fcf8;
    --news-button-secondary-bg: rgba(255,255,255,0.76);
    --news-button-secondary-bg-hover: rgba(255,255,255,0.92);
    --news-button-secondary-border: rgba(45,67,50,0.14);
    --news-button-secondary-border-hover: rgba(45,67,50,0.22);
    --news-button-secondary-text: #324b37;
    background: linear-gradient(145deg, #6da27b 0%, #3e6b4e 100%);
}

.featured-news-poster-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.featured-news-panel-poster.news-layout-poster_clean {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1rem 1rem 1.1rem;
}

.news-layout-poster_clean .featured-news-panel-visual {
    width: min(100%, 720px);
}

.news-layout-text_centered .featured-news-panel-copy-text {
    max-width: 42rem;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.news-layout-text_centered .featured-news-panel-meta,
.news-layout-text_centered .featured-news-panel-actions {
    justify-content: center;
}

.news-layout-text_note {
    padding: 1.8rem;
}

.news-layout-text_note .featured-news-panel-copy-text {
    max-width: 38rem;
    padding: 1.45rem;
    border-radius: 1.3rem;
    background: rgba(255,255,255,0.48);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 14px 30px rgba(44,36,22,0.08);
}

.news-layout-text_banner .featured-news-panel-copy-text {
    max-width: 100%;
    padding-top: 2rem;
}

.news-layout-text_banner .featured-news-panel-summary {
    font-size: 1.18rem;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: rgba(255,255,255,0.42);
}

.news-layout-text_column .featured-news-panel-copy-text {
    max-width: 50rem;
    columns: 2;
    column-gap: 2rem;
}

.news-layout-text_column .featured-news-panel-meta,
.news-layout-text_column .featured-news-panel-actions {
    column-span: all;
}

.news-layout-text_quote .featured-news-panel-summary {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.35;
}

.news-layout-text_quote .featured-news-panel-body {
    max-width: 40rem;
}

.news-layout-text_stamp .featured-news-panel-copy-text {
    max-width: 42rem;
}

.news-layout-text_stamp .featured-news-panel-meta {
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed rgba(90,75,57,0.24);
}

.news-layout-text_spotlight .featured-news-panel-copy-text {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.34);
    backdrop-filter: blur(10px);
}

.news-layout-text_serene .featured-news-panel-copy-text {
    max-width: 36rem;
    gap: 1.15rem;
}

.news-layout-text_bold .featured-news-panel-summary {
    font-size: 1.25rem;
    font-weight: 600;
}

.news-layout-mix_split_right {
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
}

.news-layout-mix_split_right .featured-news-panel-visual {
    order: 2;
}

.news-layout-mix_overlap .featured-news-panel-visual {
    padding: 1rem 0 1rem 1rem;
}

.news-layout-mix_overlap .featured-news-panel-copy-split {
    margin-left: -3rem;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: 1.35rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news-layout-mix_stack_top,
.news-layout-mix_stack_bottom {
    grid-template-columns: 1fr;
}

.news-layout-mix_stack_top .featured-news-panel-visual,
.news-layout-mix_stack_bottom .featured-news-panel-visual {
    min-height: 300px;
}

.news-layout-mix_stack_bottom .featured-news-panel-visual {
    order: 2;
}

.news-layout-mix_frame_left .featured-news-media-frame,
.news-layout-mix_frame_right .featured-news-media-frame {
    padding: 1.25rem;
    border-radius: 1.65rem;
}

.news-layout-mix_frame_right {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.news-layout-mix_frame_right .featured-news-panel-visual {
    order: 2;
}

.news-layout-mix_ribbon .featured-news-panel-copy-split {
    justify-content: flex-start;
    padding-top: 2rem;
}

.news-layout-mix_ribbon .featured-news-panel-summary {
    padding: 0.95rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.38);
}

.news-layout-mix_spotlight .featured-news-panel-visual {
    padding: 1.2rem;
}

.news-layout-mix_spotlight .featured-news-media-frame {
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.28),
        0 20px 42px rgba(44,36,22,0.14);
}

.news-layout-mix_editorial .featured-news-panel-copy-split {
    padding: 1.8rem 1.8rem 1.8rem 1rem;
}

.news-card-image-only {
    position: relative;
    overflow: hidden;
}

.news-card-image-only .news-card-media {
    margin: 0 1.1rem 1.1rem;
    border-radius: 1.35rem;
    overflow: hidden;
}

.news-card-image-only .news-card-image {
    background: #fff;
}

.news-card-image-only-head {
    position: relative;
    z-index: 2;
}

.news-card-image-only .stretched-link {
    z-index: 3;
}

.featured-news-carousel-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
}

.featured-news-carousel-control {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid rgba(212,163,115,0.2);
    background: rgba(255,255,255,0.92);
    color: #8a6441;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(44,36,22,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.featured-news-carousel-control:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(44,36,22,0.12);
}

.featured-news-carousel-control:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.featured-news-carousel-indicators {
    justify-content: center;
    gap: 0.6rem;
}

.featured-news-carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: none;
    background: rgba(212,163,115,0.32);
    opacity: 1;
    margin: 0;
}

.featured-news-carousel-indicators .active {
    background: #b9815d;
    transform: scale(1.12);
}

.news-preview-status-featured {
    background: rgba(212,163,115,0.16);
    color: #8a6441;
}

.google-review-card {
    border: 1px solid rgba(212, 163, 115, 0.18);
    box-shadow: 0 10px 28px rgba(44,36,22,0.08);
}

.google-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
}

.google-review-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
}

.google-review-author {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

.google-review-author:hover {
    color: var(--primary-dark);
}

.google-reviews-placeholder {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(212,163,115,0.18);
    box-shadow: 0 10px 26px rgba(44,36,22,0.08);
}

.google-reviews-placeholder-icon {
    width: 72px;
    height: 72px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,163,115,0.2), rgba(139,157,131,0.18));
    color: var(--primary-dark);
    font-size: 2rem;
    flex-shrink: 0;
}

/* =================================
   ANIMATIONS
================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 4rem 0;
    }

    .news-hero-icon {
        margin-left: 0;
        width: 96px;
        height: 96px;
        border-radius: 1.5rem;
        font-size: 2.25rem;
    }

    .news-grid-single .news-card {
        display: block;
    }

    .reviews-preview-intro {
        grid-template-columns: 1fr;
    }

    .reviews-preview-panel {
        margin-left: 0;
        max-width: none;
    }

    .reviews-carousel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-hero-layout {
        grid-template-columns: 1fr;
    }

    .reviews-summary-panel {
        margin-left: 0;
        max-width: none;
    }

    .featured-news-layout-text-image,
    .news-format-grid {
        grid-template-columns: 1fr;
    }

    .news-preview-sticky {
        position: static;
        top: auto;
    }

    .news-studio-layout {
        grid-template-columns: 1fr;
    }

    .news-studio-main,
    .news-studio-rail {
        grid-column: auto;
    }

    .news-studio-rail {
        position: static;
        top: auto;
    }

    .news-studio-hero-row,
    .news-studio-topbar,
    .news-preview-card-head,
    .news-studio-panel-head,
    .news-layout-section-head {
        flex-direction: column;
    }

    .news-studio-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-format-grid-pro,
    .news-theme-grid,
    .news-layout-grid,
    .news-title-style-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-studio-model-shell {
        grid-template-columns: 1fr;
    }

    .featured-news-panel-split {
        grid-template-columns: 1fr;
    }

    .featured-news-panel-poster {
        grid-template-columns: 1fr;
    }

    .featured-news-panel-copy-poster {
        max-width: none;
        padding-left: 1.45rem;
    }

    .featured-news-media-stage {
        min-height: 320px;
    }

    .featured-news-slide-title {
        max-width: none;
    }

    .news-viewer-modal .modal-header,
    .news-viewer-modal .modal-body,
    .news-viewer-modal .modal-footer,
    .review-viewer-modal .modal-header,
    .review-viewer-modal .modal-body,
    .review-viewer-modal .modal-footer {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .news-card-placeholder {
        min-height: 220px;
    }

    .news-card-media-poster,
    .news-card-media-featured.news-card-media-poster {
        height: 280px;
        padding: 0.75rem;
    }

    .news-card-cover-content,
    .featured-news-fallback-inner,
    .news-article-cover-content {
        max-width: 100%;
    }

    .news-preview-modal-header,
    .news-preview-modal-body,
    .news-preview-modal-meta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .news-preview-modal-header {
        padding-top: 1.2rem;
    }

    .featured-news-layout-text {
        padding: 1.5rem;
    }

    .featured-news-poster-frame {
        padding: 0.7rem;
        border-radius: 1.35rem;
    }

    .featured-news-actions {
        gap: 0.7rem;
    }

    .featured-news-actions .btn {
        width: 100%;
    }

    .news-format-card {
        padding: 1rem;
    }

    .news-studio-stepper,
    .news-format-grid-pro,
    .news-theme-grid,
    .news-layout-grid,
    .news-title-style-grid {
        grid-template-columns: 1fr;
    }

    .news-studio-nav,
    .news-preview-card-head,
    .news-studio-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .news-preview-head-badges {
        justify-content: flex-start;
    }

    .news-studio-nav .btn,
    .news-studio-hero-actions .btn,
    .news-preview-head-badges .news-preview-chip {
        width: 100%;
    }

    .news-upload-selected {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-news-panel-copy,
    .featured-news-panel-textonly {
        padding: 1.2rem;
    }

    .featured-news-panel-poster {
        padding: 1rem;
        gap: 1rem;
    }

    .featured-news-panel-copy-poster {
        padding-left: 1.2rem;
    }

    .featured-news-panel-actions .btn {
        width: 100%;
    }

    .featured-news-carousel-footer {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .featured-news-carousel-control {
        display: none;
    }

    .featured-news-modal .modal-header {
        padding: 1.35rem 1.2rem 0.45rem;
    }

    .featured-news-modal .modal-body {
        padding: 0.7rem 1.2rem 1.4rem !important;
    }

    .news-viewer-modal .modal-header,
    .news-viewer-modal .modal-body,
    .news-viewer-modal .modal-footer,
    .review-viewer-modal .modal-header,
    .review-viewer-modal .modal-body,
    .review-viewer-modal .modal-footer {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .news-viewer-modal .modal-header,
    .review-viewer-modal .modal-header {
        padding-top: 1.35rem;
    }

    .news-viewer-title {
        max-width: 100%;
        font-size: 1.95rem;
        line-height: 1;
    }

    .review-viewer-title {
        font-size: 1.7rem;
    }

    .news-viewer-stage,
    .news-article-cover {
        padding: 0.75rem;
        border-radius: 1.45rem;
    }

    .news-preview-shell-pro {
        padding: 1rem;
    }

    .news-preview-card-head,
    .news-preview-footer {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .news-article-cover-placeholder {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }

    .news-article-cover-content h2 {
        font-size: 2rem;
    }

    .news-article-cover-icon {
        width: 72px;
        height: 72px;
        right: 1.4rem;
        bottom: 1.4rem;
        font-size: 1.8rem;
    }

    .news-grid-public,
    .news-grid-single {
        grid-template-columns: 1fr;
    }

    .news-grid-single .news-card {
        display: block;
    }

    .google-reviews-placeholder {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-preview-panel {
        padding: 1.25rem;
    }

    .reviews-preview-panel-top {
        align-items: flex-start;
    }

    .reviews-preview-score-box {
        width: 68px;
        height: 68px;
        font-size: 1.75rem;
    }

    .reviews-preview-actions {
        flex-direction: column;
    }

    .reviews-carousel-track {
        gap: 1rem;
    }

    .reviews-carousel-item {
        flex-basis: calc((100% - (var(--reviews-visible) - 1) * 1rem) / var(--reviews-visible));
    }

    .reviews-carousel-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-carousel-dots {
        justify-content: flex-start;
    }

    .review-action-link {
        width: 100%;
        justify-content: space-between;
    }

    .review-card-actions {
        align-items: stretch;
    }

    .review-card-actions .btn {
        width: 100%;
    }

    .reviews-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-summary-panel {
        padding: 1.25rem;
    }

    .reviews-summary-score-wrap {
        align-items: flex-start;
    }

    .reviews-summary-score {
        width: 76px;
        height: 76px;
        font-size: 1.85rem;
    }

    .reviews-page-toolbar {
        gap: 0.55rem;
    }

    .review-process-card {
        padding: 1.5rem;
    }

    .review-submit-modal .modal-header {
        padding: 1.3rem 1.25rem 0;
    }
}

/* =================================
   ADMIN SPECIFIC
================================= */
.admin-page {
    --admin-accent: #b9815d;
    --admin-accent-dark: #a56d4a;
    --admin-hero-start: #7e6242;
    --admin-hero-end: #5b4632;
    --admin-shell-active-bg: rgba(212,163,115,0.2);
    --admin-shell-active-border: rgba(212,163,115,0.38);
    --admin-shell-icon: #ddb892;
}

.admin-section-dashboard {
    --admin-accent: #8c6b4f;
    --admin-accent-dark: #74563d;
    --admin-hero-start: #7d6651;
    --admin-hero-end: #5f4935;
    --admin-shell-active-bg: rgba(205,170,126,0.24);
    --admin-shell-active-border: rgba(205,170,126,0.4);
    --admin-shell-icon: #e5c89a;
}

.admin-section-gallery {
    --admin-accent: #31897e;
    --admin-accent-dark: #266d64;
    --admin-hero-start: #2f8f83;
    --admin-hero-end: #215f57;
    --admin-shell-active-bg: rgba(87,171,160,0.22);
    --admin-shell-active-border: rgba(87,171,160,0.42);
    --admin-shell-icon: #7fd2c6;
}

.admin-section-actualites {
    --admin-accent: #c47347;
    --admin-accent-dark: #a85f38;
    --admin-hero-start: #bb7a52;
    --admin-hero-end: #7a4d32;
    --admin-shell-active-bg: rgba(212,140,96,0.22);
    --admin-shell-active-border: rgba(212,140,96,0.42);
    --admin-shell-icon: #f0bf94;
}

.admin-section-avis {
    --admin-accent: #4e7aa8;
    --admin-accent-dark: #3f6288;
    --admin-hero-start: #648ab5;
    --admin-hero-end: #3b5878;
    --admin-shell-active-bg: rgba(114,157,201,0.22);
    --admin-shell-active-border: rgba(114,157,201,0.42);
    --admin-shell-icon: #b8d3ef;
}

.admin-page .navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.admin-page .navbar-brand,
.admin-page .nav-link {
    color: white !important;
}

.admin-page .nav-link:hover {
    opacity: 0.8;
}

.admin-page {
    --admin-shell-max-width: min(calc(100vw - 0.75rem), 2160px);
    --admin-shell-padding-inline: clamp(0.9rem, 1.35vw, 1.85rem);
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.09), transparent 22%),
        linear-gradient(180deg, #fbf8f3 0%, #f5f0e8 100%);
}

.admin-page .navbar {
    box-shadow: 0 10px 28px rgba(44,36,22,0.14);
}

.admin-page .nav-link.active {
    opacity: 1;
    font-weight: 700;
}

.admin-shell-bar {
    position: sticky;
    top: 74px;
    z-index: 1010;
    padding: 0.95rem 0;
    background: rgba(32,26,20,0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 24px rgba(30,23,16,0.12);
}

.admin-shell-bar > .container,
.admin-header-simple > .container,
.admin-page-hero > .container,
.admin-page-section > .container,
.admin-page-shell > .container,
.admin-page main > section > .container,
.admin-flash-wrap {
    width: var(--admin-shell-max-width) !important;
    max-width: var(--admin-shell-max-width) !important;
    padding-left: var(--admin-shell-padding-inline);
    padding-right: var(--admin-shell-padding-inline);
}

.admin-shell-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.admin-shell-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    color: rgba(255,255,255,0.92);
}

.admin-shell-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
}

.admin-shell-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-shell-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-shell-link i {
    color: var(--admin-shell-icon);
}

.admin-shell-link:hover,
.admin-shell-link.is-active {
    color: white;
    background: var(--admin-shell-active-bg);
    border-color: var(--admin-shell-active-border);
    transform: translateY(-1px);
}

.admin-page-hero,
.admin-header,
.admin-header-simple {
    padding: 2.6rem 0 2.2rem;
    background:
        radial-gradient(circle at top left, rgba(212,163,115,0.2), transparent 28%),
        linear-gradient(135deg, var(--admin-hero-start) 0%, var(--admin-hero-end) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: white;
}

.admin-page-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.admin-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
}

.admin-page-title {
    margin: 0 0 0.7rem;
    color: white;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
}

.admin-page-lead {
    margin: 0;
    max-width: 48rem;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.admin-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
}

.admin-page-actions .btn,
.admin-page .btn-toolbar .btn {
    min-height: 48px;
    padding-inline: 1.2rem;
    border-radius: 16px;
    font-weight: 600;
}

.admin-page .btn-primary {
    background: var(--admin-accent);
    border-color: var(--admin-accent);
}

.admin-page .btn-primary:hover,
.admin-page .btn-primary:focus {
    background: var(--admin-accent-dark);
    border-color: var(--admin-accent-dark);
}

.admin-page-hero .btn-primary {
    background: white;
    border-color: white;
    color: #5b4632;
    box-shadow: 0 14px 28px rgba(27,19,12,0.18);
}

.admin-page-hero .btn-primary:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.95);
    color: #5b4632;
}

.admin-page-hero .btn-outline-secondary,
.admin-page-hero .btn-outline-primary {
    color: white;
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
}

.admin-page-hero .btn-outline-secondary:hover,
.admin-page-hero .btn-outline-primary:hover {
    color: #5b4632;
    background: white;
    border-color: white;
}

.stat-card-gallery,
.admin-module-card-gallery,
.admin-quick-card-gallery {
    --module-accent: #31897e;
    --module-accent-soft: rgba(49,137,126,0.14);
}

.stat-card-news,
.admin-module-card-news,
.admin-quick-card-news {
    --module-accent: #c47347;
    --module-accent-soft: rgba(196,115,71,0.14);
}

.stat-card-reviews,
.admin-module-card-reviews,
.admin-quick-card-reviews {
    --module-accent: #4e7aa8;
    --module-accent-soft: rgba(78,122,168,0.14);
}

.admin-quick-card-site {
    --module-accent: #8c6b4f;
    --module-accent-soft: rgba(140,107,79,0.14);
}

.stat-card-gallery,
.stat-card-news,
.stat-card-reviews,
.admin-module-card-gallery,
.admin-module-card-news,
.admin-module-card-reviews,
.admin-quick-card-gallery,
.admin-quick-card-news,
.admin-quick-card-reviews,
.admin-quick-card-site {
    border-color: color-mix(in srgb, var(--module-accent, #d4a373) 18%, white);
}

.admin-module-card-gallery .admin-module-icon,
.admin-module-card-news .admin-module-icon,
.admin-module-card-reviews .admin-module-icon,
.admin-quick-card-gallery .admin-quick-icon,
.admin-quick-card-news .admin-quick-icon,
.admin-quick-card-reviews .admin-quick-icon,
.admin-quick-card-site .admin-quick-icon {
    background: var(--module-accent-soft);
    color: var(--module-accent);
}

.stat-card-gallery .stat-icon,
.stat-card-news .stat-icon,
.stat-card-reviews .stat-icon {
    background: linear-gradient(145deg, var(--module-accent), color-mix(in srgb, var(--module-accent) 72%, white));
    color: white;
}

.admin-quick-card-gallery strong {
    color: #295a54;
}

.admin-module-card-gallery .btn-primary,
.admin-module-card-news .btn-primary,
.admin-module-card-reviews .btn-primary {
    background: var(--module-accent);
    border-color: var(--module-accent);
}

.admin-module-card-gallery .btn-primary:hover,
.admin-module-card-news .btn-primary:hover,
.admin-module-card-reviews .btn-primary:hover {
    filter: brightness(0.92);
}

.admin-page-shell,
.admin-page-section {
    padding: 2rem 0 0;
}

.admin-page .row.g-3,
.admin-page .row.g-4 {
    align-items: flex-start;
}

.admin-flash-wrap .alert {
    border: none;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(44,36,22,0.08);
}

.admin-page .stat-card {
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(212,163,115,0.12);
    box-shadow: 0 18px 38px rgba(44,36,22,0.08);
}

.admin-page .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(44,36,22,0.12);
}

.admin-page .stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
}

.admin-panel {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(212,163,115,0.12);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(44,36,22,0.08);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.admin-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a37a50;
}

.admin-panel-title {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
    color: #2f251c;
}

.admin-panel-subtitle {
    margin: 0;
    color: #75695d;
}

.admin-module-grid,
.admin-summary-grid,
.admin-quick-grid {
    display: grid;
    gap: 1.25rem;
}

.admin-module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-module-card,
.admin-quick-card {
    height: 100%;
    padding: 1.45rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(212,163,115,0.12);
    box-shadow: 0 14px 32px rgba(44,36,22,0.07);
}

.admin-module-card-head,
.admin-quick-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-module-icon,
.admin-quick-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,163,115,0.2), rgba(139,157,131,0.18));
    color: #8b6743;
    font-size: 1.25rem;
}

.admin-module-meta {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.2rem;
}

.admin-module-stat,
.admin-summary-item,
.admin-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212,163,115,0.12);
}

.admin-module-stat:last-child,
.admin-summary-item:last-child,
.admin-info-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.admin-module-stat span,
.admin-summary-item span,
.admin-info-row span {
    color: #7d7166;
}

.admin-module-stat strong,
.admin-summary-item strong,
.admin-info-row strong {
    color: #2f251c;
}

.admin-module-actions,
.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.admin-segmented-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.45rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(212,163,115,0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.admin-segmented-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    color: #6d6256;
    transition: all 0.18s ease;
}

.admin-segmented-tab:hover {
    color: #2f251c;
    background: rgba(212,163,115,0.08);
}

.admin-segmented-tab.active {
    color: #fffaf6;
    background: var(--module-accent, #b2764b);
    background: linear-gradient(135deg, var(--module-accent, #b2764b), color-mix(in srgb, var(--module-accent, #b2764b) 72%, #2f251c 28%));
    box-shadow: 0 14px 28px rgba(44,36,22,0.14);
}

.admin-segmented-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.8rem;
    height: 1.8rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
    color: inherit;
    font-size: 0.84rem;
}

.admin-list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-table-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(212,163,115,0.12);
    box-shadow: 0 18px 42px rgba(44,36,22,0.08);
}

.admin-table-card .table-responsive,
.admin-page .dataTables_wrapper {
    width: 100%;
}

.admin-table-card .table {
    margin: 0;
}

.admin-table-card .table thead th {
    padding: 1rem 1.1rem;
    color: #6d6256;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212,163,115,0.14);
}

.admin-table-card .table tbody td {
    padding: 1rem 1.1rem;
    border-bottom-color: rgba(212,163,115,0.08);
}

.admin-table-card .table-hover > tbody > tr:hover {
    background: rgba(212,163,115,0.06);
}

.admin-thumb,
.gallery-thumb {
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 18px rgba(44,36,22,0.08);
}

.admin-thumb-placeholder,
.gallery-thumb-error {
    width: 88px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f7f3ec 0%, #ece3d7 100%);
    color: #8a7358;
    border: 1px solid rgba(212,163,115,0.16);
    font-size: 1.3rem;
}

.badge-category {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.badge-category.cat-visite {
    background: rgba(79,195,247,0.14);
    color: #1c7698;
}

.badge-category.cat-promenade {
    background: rgba(102,187,106,0.14);
    color: #2b7d2f;
}

.badge-category.cat-presence {
    background: rgba(255,167,38,0.16);
    color: #a5640b;
}

.badge-category.cat-garde-nuit {
    background: rgba(92,107,192,0.15);
    color: #4453a7;
}

.badge-category.cat-autre {
    background: rgba(212,163,115,0.16);
    color: #8d6540;
}

.admin-action-cluster {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
}

.admin-action-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(212,163,115,0.18);
    background: white;
    color: #876443;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(44,36,22,0.1);
}

.admin-action-btn-edit {
    color: #8d6540;
    border-color: rgba(212,163,115,0.24);
    background: rgba(212,163,115,0.08);
}

.admin-action-btn-publish {
    color: #23653c;
    border-color: rgba(40,167,69,0.24);
    background: rgba(40,167,69,0.08);
}

.admin-action-btn-hide {
    color: #a67b0c;
    border-color: rgba(255,193,7,0.26);
    background: rgba(255,193,7,0.1);
}

.admin-action-btn-sequence {
    color: #277186;
    border-color: rgba(23,162,184,0.24);
    background: rgba(23,162,184,0.09);
}

.admin-action-btn-delete {
    color: #a63f4a;
    border-color: rgba(220,53,69,0.22);
    background: rgba(220,53,69,0.08);
}

.admin-soft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-soft-badge-primary {
    background: rgba(212,163,115,0.16);
    color: #8b6743;
}

.admin-soft-badge-success {
    background: rgba(40,167,69,0.14);
    color: #2c6f44;
}

.admin-soft-badge-warning {
    background: rgba(255,193,7,0.18);
    color: #9d7200;
}

.admin-soft-badge-info {
    background: rgba(23,162,184,0.14);
    color: #236d80;
}

.admin-soft-badge-neutral {
    background: rgba(108,117,125,0.14);
    color: #66717b;
}

.admin-form-shell {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,163,115,0.12);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(44,36,22,0.08);
}

.admin-form-shell .card-body {
    padding: 1.75rem !important;
}

.admin-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.admin-form-main {
    min-width: 0;
}

.admin-form-aside {
    display: grid;
    gap: 1rem;
    align-self: start;
    position: sticky;
    top: calc(74px + 1.25rem);
}

.admin-side-stack {
    display: grid;
    gap: 1rem;
}

.admin-page .upload-zone {
    border: 2px dashed rgba(212,163,115,0.52);
    border-radius: 20px;
    padding: 2.6rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, #fdfaf5 0%, #f6efe6 100%);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-page .upload-zone:hover,
.admin-page .upload-zone.drag-over {
    transform: translateY(-2px);
    border-color: #c8956e;
    background: linear-gradient(180deg, #fbf4eb 0%, #f0e3d3 100%);
}

.admin-page .upload-content i {
    font-size: 3.5rem;
    color: #d4a373;
}

.admin-page .upload-preview img,
.admin-page .current-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(44,36,22,0.1);
}

.admin-page .current-image {
    max-width: 560px;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #faf5ee 0%, #f4ece2 100%);
}

.admin-page .help-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212,163,115,0.12);
}

.admin-page .help-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-page .help-item i {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.admin-page .info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212,163,115,0.12);
}

.admin-page .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-page .form-control,
.admin-page .form-select {
    min-height: 48px;
    border-radius: 14px;
    border-color: rgba(212,163,115,0.18);
}

.admin-page textarea.form-control {
    min-height: auto;
}

.admin-page .form-control:focus,
.admin-page .form-select:focus {
    border-color: rgba(212,163,115,0.5);
    box-shadow: 0 0 0 0.18rem rgba(212,163,115,0.16);
}

.admin-page .form-check-input {
    width: 3rem;
    height: 1.55rem;
}

.admin-page .form-check-input:checked {
    background-color: #d4a373;
    border-color: #d4a373;
}

.admin-login-shell {
    min-height: calc(100vh - 210px);
    display: grid;
    place-items: center;
}

.admin-login-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 56px rgba(44,36,22,0.12);
}

@media (max-width: 992px) {
    .admin-shell-bar {
        top: 70px;
    }

    .admin-shell-row,
    .admin-page-hero-inner,
    .admin-list-toolbar,
    .admin-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-page-actions {
        justify-content: flex-start;
    }

    .admin-summary-grid,
    .admin-module-grid,
    .admin-quick-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-layout {
        grid-template-columns: 1fr;
    }

    .admin-form-aside {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .admin-shell-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-shell-link {
        justify-content: center;
    }

    .admin-page-hero,
    .admin-header,
    .admin-header-simple {
        padding: 2rem 0 1.8rem;
    }

    .admin-page-title {
        font-size: 2rem;
    }

    .admin-page-actions,
    .admin-module-actions,
    .admin-form-actions {
        width: 100%;
    }

    .admin-page-actions .btn,
    .admin-module-actions .btn,
    .admin-form-actions .btn {
        width: 100%;
    }

    .admin-thumb,
    .gallery-thumb,
    .admin-thumb-placeholder,
    .gallery-thumb-error {
        width: 72px;
        height: 58px;
    }
}

.news-media-choice-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}

.news-media-block-head {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.news-media-block-head small {
    color: #7b6f64;
}

.news-library-panel {
    padding: 1.25rem;
    border: 1px solid rgba(191, 163, 128, 0.25);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.92), rgba(255, 255, 255, 0.98));
}

.news-library-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.news-library-current {
    font-size: 0.92rem;
    color: #6d6157;
    font-weight: 600;
}

.news-library-empty {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(224, 205, 184, 0.22);
    color: #6d6157;
}

.news-library-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-height: 30rem;
    overflow: auto;
    padding-right: 0.25rem;
}

.news-library-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgba(191, 163, 128, 0.24);
    border-radius: 1.1rem;
    background: #fff;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.news-library-card:hover,
.news-library-card:focus-visible,
.news-library-card.is-selected {
    transform: translateY(-2px);
    border-color: rgba(205, 150, 89, 0.65);
    box-shadow: 0 16px 32px rgba(78, 58, 34, 0.12);
}

.news-library-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f8f2ea;
}

.news-library-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 1rem 1rem;
}

.news-library-card-copy strong {
    font-size: 0.95rem;
    line-height: 1.3;
    word-break: break-word;
}

.news-library-card-copy small {
    color: #77695d;
}

.news-visibility-mode-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.news-visibility-mode-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.news-visibility-mode-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(191, 163, 128, 0.25);
    background: rgba(255, 249, 242, 0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-visibility-mode-option input:checked + .news-visibility-mode-card {
    border-color: rgba(205, 150, 89, 0.75);
    box-shadow: 0 14px 28px rgba(78, 58, 34, 0.12);
    transform: translateY(-1px);
}

.news-visibility-mode-card small {
    color: #7a6d62;
}

.news-preview-visibility-note {
    margin: 0.65rem 0 0;
    color: #84786e;
    font-size: 0.92rem;
}

.news-library-upload-form .form-control[type="file"] {
    background: #fff;
}

.news-library-note {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(224, 205, 184, 0.2);
    color: #5f5349;
}

.news-library-admin-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.news-library-admin-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.1rem;
    border: 1px solid rgba(191, 163, 128, 0.22);
    background: #fff;
}

.news-library-admin-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f7f2eb;
}

.news-library-admin-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.95rem 1rem 1rem;
}

.news-library-admin-copy span,
.news-library-admin-copy small {
    color: #77695d;
}

@media (min-width: 992px) {
    .news-media-choice-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
}
