/* ── Blog Page Styles ───────────────────────────────── */

.blog-header {
    padding: 20px 0;
}
.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
}
.blog-title i { color: #e91e8c; margin-right: 8px; }
.blog-subtitle {
    color: #64748b;
    font-size: 15px;
    margin-top: 6px;
}

/* Blog Cards */
.blog-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
}
.blog-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #cbd5e1;
}
.blog-card-body {
    padding: 20px;
}
.blog-card-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.4;
}
.blog-card-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #94a3b8;
}
.blog-card-meta i { margin-right: 4px; }

/* Blog Card Small */
.blog-card-sm .blog-card-img { height: 140px; }
.blog-card-sm .blog-card-body { padding: 14px; }
.blog-card-sm .blog-card-body h3 { font-size: 14px; }

/* Blog Article */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e91e8c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.back-link:hover { color: #c2177a; }

.blog-article {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.blog-article-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}
.blog-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.blog-article-meta i { margin-right: 4px; }
.blog-article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .blog-article { padding: 20px; }
    .blog-article-title { font-size: 22px; }
    .blog-title { font-size: 24px; }
}
