/* ============================================
   BLOG STYLES
   ============================================ */
.blog-page {
    padding-top: 52px;
}

.blog-hero {
    text-align: center;
    padding: 80px 24px 60px;
    background: linear-gradient(180deg, #FAFAFA 0%, #F0EFEB 100%);
}
.blog-hero h1 {
    font-size: clamp(36px, 5vw, 56px); font-weight: 800;
    margin-bottom: 16px; letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1D1D1F 0%, #424245 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blog-hero-sub {
    font-size: 18px; color: #86868B; max-width: 480px; margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    max-width: 1080px; margin: 0 auto;
    padding: 60px 24px 120px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.blog-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.blog-card-img { overflow: hidden; height: 220px; }
.blog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-content { padding: 28px 24px; }

.blog-card-tag {
    display: inline-block; padding: 4px 12px; border-radius: 980px;
    background: #F5F5F7; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: #86868B;
    margin-bottom: 14px;
}

.blog-card-content h2 {
    font-size: 18px; font-weight: 600; line-height: 1.3;
    margin-bottom: 10px; letter-spacing: -0.01em;
}

.blog-card-content p {
    font-size: 14px; color: #86868B; line-height: 1.6; margin-bottom: 16px;
}

.blog-card-date {
    font-size: 12px; color: #C7C7CC; font-weight: 500;
}

/* Article page */
.blog-article {
    max-width: 720px; margin: 0 auto;
    padding: 80px 24px 120px;
}

.blog-article-header {
    margin-bottom: 48px;
}

.blog-article-tag {
    display: inline-block; padding: 4px 12px; border-radius: 980px;
    background: #F5F5F7; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: #86868B;
    margin-bottom: 16px;
}

.blog-article h1 {
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
}

.blog-article-meta {
    font-size: 14px; color: #86868B;
}

.blog-article-hero {
    width: 100%; border-radius: 20px; overflow: hidden; margin-bottom: 48px;
}
.blog-article-hero img {
    width: 100%; height: 400px; object-fit: cover; display: block;
}

.blog-article h2 {
    font-size: 24px; font-weight: 600; margin: 48px 0 16px; letter-spacing: -0.01em;
}

.blog-article h3 {
    font-size: 20px; font-weight: 600; margin: 32px 0 12px;
}

.blog-article p {
    font-size: 17px; line-height: 1.8; color: #424245; margin-bottom: 24px;
}

.blog-article ul, .blog-article ol {
    margin: 0 0 24px 20px; font-size: 17px; line-height: 1.8; color: #424245;
}

.blog-article li { margin-bottom: 8px; }

.blog-article blockquote {
    margin: 32px 0; padding: 24px 32px;
    border-left: 3px solid #1D1D1F; background: #F5F5F7;
    border-radius: 0 16px 16px 0; font-style: italic;
}
.blog-article blockquote p { color: #1D1D1F; margin-bottom: 0; }

.blog-cta-box {
    margin: 48px 0; padding: 40px; background: #1D1D1F;
    border-radius: 20px; text-align: center;
}
.blog-cta-box h3 { color: #fff; font-size: 22px; margin: 0 0 8px; }
.blog-cta-box p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 20px; }
.blog-cta-box a {
    display: inline-block; padding: 14px 28px; background: #fff;
    color: #1D1D1F; border-radius: 980px; text-decoration: none;
    font-weight: 500; font-size: 15px; transition: transform 0.3s;
}
.blog-cta-box a:hover { transform: scale(1.04); }

/* Related Articles */
.blog-related {
    margin: 48px 0 0; padding-top: 40px;
    border-top: 1px solid #F0F0F0;
}
.blog-related h3 {
    font-size: 20px; font-weight: 600; margin-bottom: 20px;
}
.blog-related-links {
    display: flex; flex-direction: column; gap: 12px;
}
.blog-related-link {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: #F5F5F7; border-radius: 14px;
    text-decoration: none; color: #1D1D1F; font-size: 16px; font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}
.blog-related-link:hover {
    background: #EDEDF0; transform: translateX(4px);
}
.blog-related-link .blog-card-tag {
    margin-bottom: 0; flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; max-width: 480px; }
    .blog-article-hero img { height: 260px; }
}
