/* ============================================
   THE MERIDIAN REVIEW - Premium Editorial
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --white: #ffffff;
    --ivory: #fafbfc;
    --pearl: #f4f6f8;
    --silver: #e8ecf0;
    --ash: #c4cdd5;
    --slate: #8a9bae;
    --steel: #5c6e7f;
    --charcoal: #2d3a47;
    --navy: #1a2634;
    --royal-blue: #1e3a5f;
    --deep-blue: #152740;
    --accent-blue: #3d6a99;
    --gold: #c9a962;
    --gold-light: #dfc88a;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
    border-bottom: 1px solid var(--silver);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--navy);
    padding: 8px 0;
    text-align: center;
}

.header-top p {
    color: var(--ash);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.header-top span {
    color: var(--gold);
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--steel);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--royal-blue);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--royal-blue);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-subscribe {
    background: var(--royal-blue);
    color: var(--white);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-subscribe:hover {
    background: var(--deep-blue);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
}

.btn-login {
    background: transparent;
    color: var(--steel);
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--silver);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-read {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--royal-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-read:hover {
    gap: 12px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--steel);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.btn-back:hover {
    color: var(--royal-blue);
    gap: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 50%, var(--deep-blue) 100%);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    color: var(--ash);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    background: var(--white);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    max-width: 200px;
}

.divider-ornament {
    width: 12px;
    height: 12px;
    border: 1px solid var(--ash);
    transform: rotate(45deg);
    margin: 0 24px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--navy);
}

/* ============================================
   FEATURED ARTICLES
   ============================================ */
.featured {
    background: var(--white);
    padding: 0 48px 80px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--silver);
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    display: block;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 38, 52, 0.12);
    border-color: var(--ash);
}

.article-card.premium::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.article-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--pearl) 0%, var(--silver) 100%);
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 32px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.article-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--royal-blue);
}

.article-date {
    font-size: 12px;
    color: var(--slate);
}

.article-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-excerpt {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--silver);
}

.read-time {
    font-size: 12px;
    color: var(--slate);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: linear-gradient(180deg, var(--pearl) 0%, var(--ivory) 100%);
    padding: 100px 48px;
}

.pricing .section-header {
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--silver);
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(26, 38, 52, 0.15);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.05);
    z-index: 5;
}

.pricing-card.featured:hover {
    transform: scale(1.07);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-card.featured .pricing-features li::before {
    color: var(--gold);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 6px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price sup {
    font-size: 24px;
    vertical-align: super;
}

.pricing-period {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--steel);
    padding: 12px 0;
    border-bottom: 1px solid var(--silver);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--royal-blue);
    font-weight: 700;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card .btn-pricing {
    background: var(--pearl);
    color: var(--navy);
    border: 1px solid var(--silver);
}

.pricing-card .btn-pricing:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.pricing-card.featured .btn-pricing {
    background: var(--gold);
    color: var(--navy);
}

.pricing-card.featured .btn-pricing:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

/* Payment Info */
.payment-info {
    text-align: center;
    margin-top: 60px;
}

.payment-info p {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.payment-icon {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--silver);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--white);
    padding: 100px 48px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--pearl);
    padding: 48px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 120px;
    color: var(--silver);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--slate);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: var(--navy);
    padding: 80px 48px;
    text-align: center;
}

.newsletter h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter p {
    font-size: 16px;
    color: var(--ash);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--slate);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--deep-blue);
    padding: 80px 48px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--slate);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */
.article-page {
    background: var(--white);
}

.article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 50%, var(--deep-blue) 100%);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-hero .article-category {
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
}

.article-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-hero .article-meta {
    color: var(--ash);
    margin-bottom: 0;
}

.article-hero .article-date {
    color: var(--ash);
}

.article-hero .read-time {
    color: var(--ash);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 48px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.article-body h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    margin: 48px 0 24px;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin: 40px 0 20px;
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 32px;
    margin: 40px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    color: var(--royal-blue);
    line-height: 1.6;
}

.article-body ul,
.article-body ol {
    margin: 24px 0;
    padding-left: 32px;
}

.article-body li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.article-body img {
    width: 100%;
    margin: 40px 0;
}

.article-body .image-caption {
    font-size: 14px;
    color: var(--slate);
    text-align: center;
    margin-top: -32px;
    margin-bottom: 40px;
}

/* Paywall Overlay */
.paywall {
    position: relative;
    margin-top: -200px;
    padding-top: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100px, var(--white) 100%);
}

.paywall-content {
    text-align: center;
    padding: 60px 48px;
    background: var(--pearl);
    border: 1px solid var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

.paywall-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
}

.paywall-content p {
    font-size: 16px;
    color: var(--steel);
    margin-bottom: 32px;
}

.paywall-content .btn-primary {
    margin-bottom: 16px;
}

.paywall-content .login-link {
    font-size: 14px;
    color: var(--slate);
}

.paywall-content .login-link a {
    color: var(--royal-blue);
    text-decoration: none;
}

.paywall-content .login-link a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .articles-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 24px;
        padding: 20px 24px;
    }

    nav ul {
        gap: 20px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .featured {
        padding: 0 24px 60px;
    }

    .pricing {
        padding: 60px 24px;
    }

    .testimonials {
        padding: 60px 24px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 60px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    footer {
        padding: 60px 24px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .article-hero {
        padding: 60px 24px;
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .article-body {
        padding: 60px 24px;
    }

    .article-body p {
        font-size: 16px;
    }

    .article-body blockquote {
        font-size: 20px;
        padding-left: 24px;
    }
}
