/* ==========================================================================
   VERSAILLES JOURNAL — DESIGN SYSTEM & EDITORIAL STYLES
   Subtítulo: Imóveis, investimentos e a arte de viver extraordinariamente.
   ========================================================================== */

@import url('../style.css');

:root {
    --bg-deep-black: #090909;
    --bg-graphite: #171717;
    --bg-graphite-sec: #242424;
    --bg-card: rgba(23, 23, 23, 0.85);
    --bg-card-hover: rgba(36, 36, 36, 0.95);
    --text-ivory: #F5F1E8;
    --text-white: #FFFFFF;
    --text-muted: #A1A1AA;
    --gold-primary: #e4b35b;
    --gold-light: #fcf6ba;
    --gold-dark: #C9A85D;
    --border-subtle: rgba(228, 179, 91, 0.22);
    --border-strong: rgba(228, 179, 91, 0.55);
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.85);
    --shadow-gold: 0 10px 30px rgba(228, 179, 91, 0.2);
}

body.journal-body {
    background-color: var(--bg-deep-black);
    color: var(--text-ivory);
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- READING PROGRESS BAR --- */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 99999;
}
.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* --- JOURNAL HEADER --- */
.journal-hero {
    position: relative;
    padding: 180px 20px 100px;
    background: radial-gradient(circle at 50% 30%, rgba(36, 36, 36, 0.4) 0%, var(--bg-deep-black) 80%),
                url('../bg1.png') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}
.journal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9,9,9,0.7) 0%, rgba(9,9,9,0.92) 100%);
    z-index: 1;
}
.journal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.journal-tagline {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 6px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    background: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(8px);
}
.journal-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--text-ivory);
    margin: 0 0 20px;
    letter-spacing: 2px;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--text-ivory) 60%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.journal-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    font-style: italic;
}

/* --- CATEGORY NAVIGATION & SEARCH --- */
.journal-nav-bar {
    position: sticky;
    top: 80px;
    z-index: 900;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 0;
}
.journal-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.category-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.category-pills::-webkit-scrollbar {
    display: none;
}
.cat-pill {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cat-pill:hover {
    color: var(--text-ivory);
    background: rgba(255, 255, 255, 0.05);
}
.cat-pill.active {
    background: var(--bg-graphite-sec);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(228, 179, 91, 0.15);
}

.journal-search-box {
    position: relative;
    min-width: 260px;
    flex: 1;
    max-width: 320px;
}
.journal-search-input {
    width: 100%;
    padding: 10px 40px 10px 18px;
    background: var(--bg-graphite);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    color: var(--text-ivory);
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s ease;
}
.journal-search-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(228, 179, 91, 0.2);
}
.journal-search-btn, .journal-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}
.journal-search-clear {
    right: 36px;
    display: none;
}
.journal-search-clear:hover, .journal-search-btn:hover {
    color: var(--gold-primary);
}

/* --- SECTIONS COMMON --- */
.journal-section {
    padding: 90px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.journal-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.journal-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-ivory);
    margin: 0 0 12px;
    letter-spacing: 1px;
}
.journal-section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* --- FEATURED ARTICLE (REPORTAGEM PRINCIPAL) --- */
.featured-article-card {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    background: var(--bg-graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: transform 0.4s ease, border-color 0.4s ease;
    margin-bottom: 80px;
}
.featured-article-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}
.featured-img-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-article-card:hover .featured-img-wrapper img {
    transform: scale(1.06);
}
.featured-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-category {
    color: var(--gold-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}
.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--text-ivory);
    margin: 0 0 18px;
    line-height: 1.3;
}
.featured-summary {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 28px;
    line-height: 1.65;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #71717A;
    font-size: 0.82rem;
    margin-bottom: 30px;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- CARDS GRID (DESTAQUES / MERCADO / ETC) --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}
.article-card {
    background: var(--bg-graphite);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.article-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}
.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    background: #111;
}
.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.article-card:hover .card-img-wrapper img {
    transform: scale(1.07);
}
.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    color: var(--text-ivory);
    margin: 10px 0 14px;
    line-height: 1.35;
    font-weight: 600;
}
.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.card-title a:hover {
    color: var(--gold-primary);
}
.card-summary {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    flex: 1;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    margin-top: auto;
}
.btn-read-more {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}
.btn-read-more:hover {
    color: var(--gold-light);
    gap: 10px;
}

/* --- EXTRAORDINARY PROPERTIES SECTION --- */
.properties-showcase {
    background: linear-gradient(180deg, var(--bg-deep-black) 0%, #11141A 50%, var(--bg-deep-black) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 110px 20px;
}
.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.prop-card {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(228, 179, 91, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.prop-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.prop-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.prop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.prop-card:hover .prop-img-box img {
    transform: scale(1.08);
}
.prop-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(9, 9, 9, 0.85);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}
.prop-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prop-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-ivory);
    margin: 0 0 10px;
}
.prop-location {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.prop-specs {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.82rem;
}
.prop-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.prop-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
}
.btn-prop-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}
.btn-prop-cta:hover {
    background: var(--gold-primary);
    color: #090909;
    box-shadow: 0 5px 20px rgba(228, 179, 91, 0.4);
}

/* --- VIVER BALNEÁRIO CAMBORIÚ & DECOR BANNER --- */
.editorial-banner {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 90px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(9, 9, 9, 0.88), rgba(23, 23, 23, 0.95)),
                url('../bg2.png') center/cover no-repeat;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-luxury);
    margin: 60px auto;
    max-width: 1400px;
}
.editorial-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--gold-light);
    margin-bottom: 18px;
}
.editorial-banner-desc {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-ivory);
    max-width: 780px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* --- VERSAILLES TV --- */
.video-section {
    background: #0d0d0d;
    padding: 100px 20px;
    border-top: 1px solid var(--border-subtle);
}
.video-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-graphite);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}
.video-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}
.video-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85;
}
.video-cover:hover img {
    transform: scale(1.04);
    opacity: 1;
}
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(228, 179, 91, 0.9);
    color: #090909;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(228, 179, 91, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-cover:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.15);
    background: #fff;
}
.video-details {
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    background: radial-gradient(circle at center, rgba(36, 36, 36, 0.7) 0%, var(--bg-deep-black) 100%);
    padding: 100px 20px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.newsletter-box {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-graphite);
    border: 1px solid var(--gold-primary);
    border-radius: 28px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--gold-light);
    margin-bottom: 12px;
}
.newsletter-form {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    text-align: left;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}
.form-input, .form-select {
    padding: 14px 18px;
    background: var(--bg-deep-black);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: var(--text-ivory);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
}
.form-checkbox-group {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.form-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--gold-primary);
}
.newsletter-submit-btn {
    grid-column: span 2;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #090909;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(228, 179, 91, 0.3);
}
.newsletter-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(228, 179, 91, 0.5);
    background: var(--gold-light);
}

/* --- INDIVIDUAL ARTICLE PAGE (/blog/[slug]) --- */
.article-page-header {
    padding: 160px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.article-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.article-breadcrumbs a {
    color: var(--gold-primary);
    text-decoration: none;
}
.article-breadcrumbs a:hover {
    text-decoration: underline;
}
.article-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--text-ivory);
    line-height: 1.2;
    margin-bottom: 22px;
}
.article-subheading {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #CBD5E1;
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto 35px;
    line-height: 1.6;
}
.article-author-meta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 28px;
    background: var(--bg-graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 40px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.article-author-meta strong {
    color: var(--text-ivory);
}

.article-hero-image-box {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.article-hero-image-box img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-luxury);
}

.article-body-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Table of Contents */
.article-toc {
    background: var(--bg-graphite);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}
.toc-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toc-list li a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-block;
}
.toc-list li a:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* Typography Inside Article Content */
.article-content {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #E2E8F0;
}
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-light);
    margin: 50px 0 22px;
    border-bottom: 1px solid rgba(228, 179, 91, 0.25);
    padding-bottom: 12px;
}
.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-ivory);
    margin: 38px 0 16px;
}
.article-content p {
    margin-bottom: 24px;
}
.article-content ul, .article-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}
.article-content li {
    margin-bottom: 12px;
}
.article-content blockquote {
    margin: 40px 0;
    padding: 25px 35px;
    background: rgba(228, 179, 91, 0.08);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-ivory);
}
.article-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 35px 0 15px;
    border: 1px solid rgba(255,255,255,0.1);
}
.img-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 35px;
    font-style: italic;
}

/* Author Box */
.author-profile-box {
    background: var(--bg-graphite);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 60px 0;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}
.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-ivory);
    margin: 0 0 6px;
}
.author-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Share Bar */
.article-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 15px;
}
.share-links {
    display: flex;
    align-items: center;
    gap: 14px;
}
.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-ivory);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.share-btn:hover {
    background: var(--gold-primary);
    color: #090909;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    .featured-img-wrapper {
        min-height: 320px;
    }
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-checkbox-group, .newsletter-submit-btn {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .journal-hero {
        padding: 140px 16px 70px;
    }
    .featured-content {
        padding: 32px 24px;
    }
    .articles-grid, .prop-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-box {
        padding: 35px 22px;
    }
    .editorial-banner {
        padding: 60px 24px;
    }
    .author-profile-box {
        flex-direction: column;
        text-align: center;
    }
}
