/* public/styles.css */

/* === NAVIGATOR BRAND VARIABLES === */
:root {
    --color-primary: #1B365D;
    --color-primary-dark: #132845;
    --color-primary-light: #2A4A7A;
    --color-secondary: #FFFFFF;
    --color-accent: #E9C46A;
    --color-accent-light: #F4D78A;
    --color-highlight: #2A9D8F;
    --color-highlight-dark: #238579;
    --color-highlight-light: #E8F4F2;
    --color-text: #2F2F2F;
    --color-text-muted: #666666;
    --color-text-light: #94a3b8;
    --color-background: #F4F6F8;
    --color-background-warm: #FFFBF5;
    --color-danger: #ef4444;
    --color-danger-light: #fef2f2;
    --color-success: #22c55e;
    --color-success-light: #f0fdf4;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-secondary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(27, 54, 93, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

.navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__logo i {
    color: var(--color-highlight);
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.navbar__links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition);
}

.navbar__links a:hover {
    color: var(--color-highlight);
}

.navbar__cta {
    background: var(--color-highlight);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar__cta:hover {
    background: var(--color-highlight-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #eee;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background-color: var(--color-background);
    color: var(--color-highlight);
}

@media (max-width: 900px) {
    .navbar__nav { display: none; }
    .menu-toggle { display: block; }
}

/* === HERO SECTION === */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-highlight-light);
    color: var(--color-highlight-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero__title span {
    color: var(--color-highlight);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--color-highlight);
    color: white;
    box-shadow: 0 4px 14px rgba(42, 157, 143, 0.4);
}

.btn--primary:hover {
    background: var(--color-highlight-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.5);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: white;
}

.hero__guarantee {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero__guarantee i {
    color: var(--color-highlight);
    margin-right: 6px;
}

/* === PAIN SECTION === */
.pain {
    padding: 100px 0;
    background: var(--color-secondary);
}

.pain__header {
    text-align: center;
    margin-bottom: 60px;
}

.pain__title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.pain__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.pain__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--color-background);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.pain__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain__checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-danger);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain__checkbox i {
    color: var(--color-danger);
    font-size: 0.75rem;
}

.pain__text {
    font-size: 1rem;
    line-height: 1.6;
}

.pain__revelation {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--border-radius-xl);
    color: white;
}

.pain__revelation p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.pain__revelation strong {
    color: var(--color-accent);
}

/* === PROBLEM SECTION === */
.problem {
    padding: 100px 0;
    background: var(--color-background);
}

.problem__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .problem__inner {
        grid-template-columns: 1fr;
    }
}

.problem__content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.problem__content h2 span {
    color: var(--color-highlight);
}

.problem__content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem__visual {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    color: white;
    text-align: center;
}

.problem__visual-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.problem__visual h3 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.problem__visual p {
    opacity: 0.9;
    line-height: 1.7;
}

/* === METHOD SECTION === */
.method {
    padding: 100px 0;
    background: var(--color-secondary);
}

.method__header {
    text-align: center;
    margin-bottom: 60px;
}

.method__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.method__title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.method__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.method__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.method__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 32px;
    background: var(--color-background);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    align-items: start;
}

.method__step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.method__step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.method__step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-highlight);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.method__step-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.method__step-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* === OFFER SECTION === */
.offer {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-secondary) 100%);
}

.offer__header {
    text-align: center;
    margin-bottom: 48px;
}

.offer__title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.offer__card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-secondary);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--color-highlight);
}

.offer__card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.offer__card-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.offer__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.offer__price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent);
}

.offer__price-period {
    font-size: 1.25rem;
    opacity: 0.8;
}

.offer__price-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.offer__card-body {
    padding: 40px;
}

.offer__features {
    list-style: none;
    margin-bottom: 32px;
}

.offer__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-background);
}

.offer__feature:last-child {
    border-bottom: none;
}

.offer__feature-icon {
    width: 28px;
    height: 28px;
    background: var(--color-highlight-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer__feature-icon i {
    color: var(--color-highlight);
    font-size: 0.8rem;
}

.offer__feature-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.offer__feature-text span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.offer__cta {
    text-align: center;
}

.offer__cta .btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px 36px;
}

.offer__cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.offer__cta-note i {
    color: var(--color-highlight);
    margin-right: 6px;
}

/* === TRANSFORMATION SECTION === */
.transformation {
    padding: 100px 0;
    background: var(--color-secondary);
}

.transformation__header {
    text-align: center;
    margin-bottom: 60px;
}

.transformation__title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

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

@media (max-width: 600px) {
    .transformation__grid {
        grid-template-columns: 1fr;
    }
}

.transformation__item {
    padding: 32px;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
}

.transformation__item:hover {
    transform: translateY(-4px);
}

.transformation__item--before {
    background: var(--color-danger-light);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.transformation__item--after {
    background: var(--color-highlight-light);
    border: 2px solid rgba(42, 157, 143, 0.2);
}

.transformation__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.transformation__item--before .transformation__label {
    color: var(--color-danger);
}

.transformation__item--after .transformation__label {
    color: var(--color-highlight);
}

.transformation__list {
    list-style: none;
}

.transformation__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

.transformation__list li:last-child {
    margin-bottom: 0;
}

.transformation__list li i {
    margin-top: 4px;
}

.transformation__item--before .transformation__list li i {
    color: var(--color-danger);
}

.transformation__item--after .transformation__list li i {
    color: var(--color-highlight);
}

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

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--color-secondary);
    padding: 32px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    color: var(--color-accent);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial__quote {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--color-text);
}

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

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial__name {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.testimonial__details {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === GUARANTEE === */
.guarantee {
    padding: 80px 0;
    background: var(--color-secondary);
}

.guarantee__inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--color-highlight-light) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--color-highlight);
}

@media (max-width: 600px) {
    .guarantee__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.guarantee__badge {
    width: 120px;
    height: 120px;
    background: var(--color-highlight);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.guarantee__badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee__badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === GUARANTEE === */
.guarantee {
    padding: 80px 0;
    background: var(--color-secondary);
}

.guarantee__inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--color-highlight-light) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--color-highlight);
}

@media (max-width: 600px) {
    .guarantee__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.guarantee__badge {
    width: 120px;
    height: 120px;
    background: var(--color-highlight);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.guarantee__badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee__badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FIXED: This rule was previously broken */
.guarantee__content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary); 
}

/* === FINAL CTA SECTION === */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    text-align: center;
    color: white;
}

.final-cta__title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta .btn--primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.final-cta .btn--secondary {
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* === FOOTER === */
.footer {
    background: var(--color-primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 500px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.footer__brand h4 i {
    color: var(--color-highlight);
}

.footer__brand p {
    opacity: 0.7;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__links h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-weight: 700;
}

.footer__links ul {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}
/* === FINAL CTA SECTION === */
.final-cta { 
    padding: 100px 0; 
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); 
    text-align: center; 
    color: white; 
}

.final-cta__title { 
    color: white; 
    font-size: 2.5rem; 
    margin-bottom: 16px; 
}

.final-cta__subtitle { 
    font-size: 1.25rem; 
    opacity: 0.9; 
    max-width: 600px; 
    margin: 0 auto 40px; 
}

.final-cta__buttons { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
    flex-wrap: wrap; 
}

.final-cta .btn--primary { 
    background: var(--color-accent); 
    color: var(--color-primary); 
}

.final-cta .btn--secondary { 
    border-color: rgba(255, 255, 255, 0.5); 
}

.final-cta .btn--secondary:hover { 
    background: rgba(255, 255, 255, 0.15); 
    border-color: white; 
}

/* === FOOTER === */
.footer { 
    background: var(--color-primary-dark); 
    color: white; 
    padding: 80px 0 40px; 
}

.footer__grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 48px; 
    margin-bottom: 48px; 
}

@media (max-width: 768px) { 
    .footer__grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; 
    } 
}

@media (max-width: 500px) { 
    .footer__grid { 
        grid-template-columns: 1fr; 
    } 
}

.footer__brand h4 { 
    font-size: 1.25rem; 
    margin-bottom: 16px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: white; /* Ensures text is visible */
}

.footer__brand h4 i { 
    color: var(--color-highlight); 
}

.footer__brand p { 
    opacity: 0.7; 
    line-height: 1.7; 
    font-size: 0.95rem; 
}

.footer__links h5 { 
    font-size: 1rem; 
    margin-bottom: 20px; 
    color: var(--color-accent); 
    font-weight: 700;
}

.footer__links ul { 
    list-style: none; 
}

.footer__links li { 
    margin-bottom: 12px; 
}

.footer__links a { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.95rem; 
    transition: var(--transition); 
}

.footer__links a:hover { 
    color: white; 
}

.footer__bottom { 
    padding-top: 32px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    text-align: center; 
    font-size: 0.85rem; 
    opacity: 0.6; 
}
/* === ARTICLE / BLOG STYLES (Add to bottom of styles.css) === */

/* Layout & Spacing */
.article-layout {
    /* FIXED: Top padding increased to 120px to clear fixed navbar */
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { order: -1; }
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-highlight); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--color-highlight-dark); }
.breadcrumbs span { margin: 0 8px; color: var(--color-text-muted); }

/* Article Components */
.article-header { margin-bottom: 40px; }
.article-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--color-primary);
}

/* Author Byline */
.author-byline { display: flex; align-items: center; gap: 16px; }
.author-photo {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.1rem;
}
.author-info { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-weight: 700; color: var(--color-primary); }
.author-role { font-size: 0.85rem; color: var(--color-highlight); }
.publish-date { font-size: 0.9rem; color: var(--color-text-muted); }

/* Key Takeaways Box */
.key-takeaways {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px;
    margin-bottom: 40px;
    border-left: 4px solid var(--color-highlight);
}
.key-takeaways h2 {
    font-size: 1.1rem; color: var(--color-highlight);
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.key-takeaways ul { margin: 0; padding-left: 20px; }
.key-takeaways li { margin-bottom: 10px; color: var(--color-text); }

/* Main Body Content */
.article-body {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .article-body { padding: 32px 24px; } }

.article-body p { margin-bottom: 24px; font-size: 1.05rem; line-height: 1.8; }
.article-body h2 {
    font-size: 1.6rem; margin: 48px 0 24px; padding-bottom: 12px;
    border-bottom: 2px solid var(--color-highlight-light); color: var(--color-primary);
}
.article-body h3 { font-size: 1.25rem; margin: 32px 0 16px; color: var(--color-primary); }
.article-body ul, .article-body ol { margin-bottom: 24px; padding-left: 24px; }
.article-body li { margin-bottom: 12px; line-height: 1.7; }

/* Callout Boxes */
.highlight-box {
    background: var(--color-background-warm);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 28px 32px; margin: 32px 0;
}
.highlight-box h3 { font-size: 1.1rem; color: var(--color-accent); margin-bottom: 12px; }

.insight-box {
    background: var(--color-highlight-light);
    border-left: 4px solid var(--color-highlight);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 28px 32px; margin: 32px 0;
}
.insight-box h3 { font-size: 1.1rem; color: var(--color-highlight-dark); margin-bottom: 12px; }

/* Sidebar & Read Next */
.sidebar-widget {
    background: white; border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md); padding: 32px;
    position: sticky; top: 100px; text-align: center;
    border-top: 4px solid var(--color-highlight);
}
.sidebar-widget h3 { font-size: 1.2rem; margin-bottom: 12px; }
.sidebar-widget p { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 20px; }

.read-next { background: var(--color-primary); padding: 80px 24px; margin-top: 60px; }
.read-next h2 { color: white; text-align: center; margin-bottom: 40px; font-size: 1.8rem; }
.read-next-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 800px; margin: 0 auto;
}
@media (max-width: 600px) { .read-next-grid { grid-template-columns: 1fr; } }

.read-next-card {
    background: white; border-radius: var(--border-radius-lg);
    padding: 32px; transition: var(--transition); cursor: pointer; display: block;
}
.read-next-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.read-next-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--color-primary); }
.read-next-card:hover h3 { color: var(--color-highlight); }
.read-next-card p { font-size: 0.95rem; color: var(--color-text-muted); margin: 0; }
