
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fefaf5;   /* 奶油米白基底，温暖护眼 */
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Noto Sans', 'Helvetica Neue', sans-serif;
    color: #2c241a;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========= 头部导航 & 博客标题 ========= */
.site-header {
    padding: 28px 0 16px;
    border-bottom: 2px solid #ffe7d9;
    margin-bottom: 40px;
    background: #fffbf8;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 251, 248, 0.92);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.logo-area h1 {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #d48c70, #b46b4a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-area p {
    font-size: 0.85rem;
    color: #9b7b64;
    margin-top: 6px;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #5c3e2e;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #c26a48;
    border-bottom-color: #f3bfa8;
}

/* ========= hero 引言区 ========= */
.hero {
    text-align: center;
    margin: 40px 0 48px;
}

.hero .tagline {
    font-size: 1.1rem;
    color: #bf876b;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #402d21;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.3;
}

.hero .date-badge {
    margin-top: 20px;
    font-size: 0.9rem;
    background: #fff0e8;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    color: #b4623f;
}

/* ========= 公用卡片样式 ========= */
.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 56px 0 28px 0;
    border-left: 6px solid #e9b18b;
    padding-left: 20px;
    color: #3b2a1f;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 32px;
}

.story-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.12);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eeddce;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(125deg, #f9e2ce, #f5cdb3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #c0825e;
}

.img-placeholder.img-placeholder-text {
    font-size: 1.4rem;
    white-space: nowrap;
}

.card-content {
    padding: 22px 20px 26px;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #e2976e;
    margin-bottom: 8px;
}

.story-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3b2a1e;
}

.story-card p {
    color: #5f4b38;
    margin-bottom: 16px;
    line-height: 1.5;
}

.date-meta {
    font-size: 0.8rem;
    color: #b3927a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 特色区块：双栏展示亮点生活 */
.feature-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff6ef;
    border-radius: 48px;
    padding: 32px 32px;
    margin: 40px 0 20px;
    align-items: center;
}

.feature-text {
    flex: 1.2;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #c47350;
}

.feature-text p {
    font-size: 1.05rem;
    color: #4f3826;
    margin-bottom: 20px;
}

.pet-list {
    display: flex;
    gap: 28px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pet-badge {
    background: white;
    border-radius: 60px;
    padding: 8px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-media {
    flex: 0.9;
    background: #efd9cb;
    border-radius: 36px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 5rem;
    color: #be7a58;
}

/* ========= 底部样式 - 与全页温暖色系完全一致 ========= */
.site-footer {
    margin-top: 80px;
    background: #fcf3ea;   /* 柔和的暖杏底色，和页面主色调融合 */
    color: #4f3a2c;        /* 深咖色文字保持可读性 */
    padding: 36px 0 28px;
    border-radius: 32px 32px 0 0;
    border-top: 1px solid #ffe0cf;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #6b4c38;
}

.footer-icp {
    font-family: monospace;
    letter-spacing: 1px;
    background: #f5e6db;   /* 浅米卡其底，柔和过渡 */
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #865d45;
    font-weight: 500;
}

.footer-icp a {
    color: #865d45;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-icp a:hover {
    color: #b36b48;
    text-decoration: underline;
}

.footer-links a {
    color: #b36b48;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #7c4c33;
    text-decoration: underline;
}

/* 底部第二行温暖标语 */
.footer-note {
    margin-top: 18px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
    color: #9b745b;
    border-top: 1px dashed #ffdecb;
    padding-top: 18px;
}

/* 响应式调整 */
@media (max-width: 750px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .feature-split {
        flex-direction: column;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
