/* GEO 规范已适配 - 王蔚导游个人博客全局样式 */

/* ==================== CSS Variables ==================== */
:root {
    --mist-rose: #c49b95;
    --mist-green: #7a9a7e;
    --tea-gold: #b8945a;
    --rice-paper: #fdfaf5;
    --warm-white: #fefefb;
    --text-warm: #4a3f3a;
    --text-soft: #8a7f7a;
    --shadow-soft: 0 4px 20px rgba(74, 63, 58, 0.08);
    --shadow-hover: 0 8px 30px rgba(74, 63, 58, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Noto Serif SC', serif;
    --font-body: 'Noto Sans SC', sans-serif;
    --transition: all 0.3s ease;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--rice-paper);
    color: var(--text-warm);
    line-height: 1.8;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-warm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ==================== Layout ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--mist-rose), var(--mist-green));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-soft);
    margin-top: 16px;
    font-size: 1.1rem;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mist-rose);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-warm);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mist-rose);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--mist-rose);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--mist-rose), var(--tea-gold));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 155, 149, 0.4);
}

.contact-phone i {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-warm);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--mist-rose), var(--tea-gold));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 155, 149, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mist-rose);
    color: var(--mist-rose);
}

.btn-outline:hover {
    background: var(--mist-rose);
    color: white;
}

.btn-secondary {
    background: var(--warm-white);
    color: var(--text-warm);
    border: 1px solid rgba(196, 155, 149, 0.3);
}

.btn-secondary:hover {
    border-color: var(--mist-rose);
    color: var(--mist-rose);
}

/* ==================== Cards ==================== */
.card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

/* ==================== Tags/Chips ==================== */
.tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(196, 155, 149, 0.15);
    color: var(--mist-rose);
    border-radius: 50px;
    font-size: 0.85rem;
    margin: 4px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--mist-rose);
    color: white;
}

.tag-green {
    background: rgba(122, 154, 126, 0.15);
    color: var(--mist-green);
}

.tag-green:hover {
    background: var(--mist-green);
    color: white;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--rice-paper) 0%, rgba(196, 155, 149, 0.1) 100%);
    padding-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text h1 span {
    color: var(--mist-rose);
}

.hero-text .slogan {
    font-size: 1.3rem;
    color: var(--text-soft);
    margin-bottom: 32px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mist-rose), var(--mist-green));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* Hero Photo Container */
.hero-photo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Photo (no frame) */
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

/* ==================== Stats Section ==================== */
.stats {
    background: var(--warm-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--mist-rose);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-soft);
}

/* ==================== Blog Cards ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-title a:hover {
    color: var(--mist-rose);
}

.blog-card-excerpt {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Route Cards ==================== */
.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.route-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.route-card-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(196, 155, 149, 0.2);
}

.route-card-days {
    display: inline-block;
    padding: 4px 12px;
    background: var(--mist-green);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.route-card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.route-card-price {
    color: var(--tea-gold);
    font-size: 1.4rem;
    font-weight: 600;
}

.route-card-body {
    padding: 20px 28px;
}

.route-card-highlight {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.route-card-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(196, 155, 149, 0.2);
}

.route-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==================== Review Cards ==================== */
.review-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--mist-rose), var(--mist-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.review-stars {
    color: var(--tea-gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-warm);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==================== Gallery ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.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.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Contact Form ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--mist-rose), var(--tea-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-warm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(196, 155, 149, 0.3);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--rice-paper);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mist-rose);
    box-shadow: 0 0 0 3px rgba(196, 155, 149, 0.2);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--text-warm);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--mist-rose);
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--mist-rose);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, var(--mist-rose), var(--mist-green));
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ==================== Breadcrumb ==================== */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ==================== FAQ ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mist-rose);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--mist-rose);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* ==================== Author Card ==================== */
.author-card {
    background: linear-gradient(135deg, rgba(196, 155, 149, 0.1), rgba(122, 154, 126, 0.1));
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-soft);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.author-info p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== Pagination ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--text-warm);
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--mist-rose);
    color: white;
}

/* ==================== Lightbox ==================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--mist-rose);
}

/* ==================== Success Page ==================== */
.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--mist-green), var(--tea-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
    color: white;
}

.success-page h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.success-page p {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ==================== Animations ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-grid,
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--warm-white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
        gap: 16px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .blog-grid,
    .route-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== Filter Buttons ==================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--warm-white);
    border: 1px solid rgba(196, 155, 149, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-warm);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--mist-rose);
    border-color: var(--mist-rose);
    color: white;
}

/* ==================== Article Content ==================== */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--text-warm);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.article-content p {
    margin-bottom: 1.2rem;
    line-height: 2;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content strong {
    color: var(--mist-rose);
}

.article-content blockquote {
    border-left: 4px solid var(--mist-rose);
    padding-left: 20px;
    margin: 1.5rem 0;
    color: var(--text-soft);
    font-style: italic;
}

.article-header-img {
    width: calc(100% + 96px);
    margin-left: -48px;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-bottom: 32px;
}

.article-header-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(196, 155, 149, 0.2);
}

.article-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.4;
}
