/* ---- Blog listing page styles ---- */

.blog-hero {
    background: linear-gradient(135deg, #fce4f0 0%, #fff5fb 100%);
    padding: 72px 0 56px;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.blog-hero p {
    color: #9b7e8e;
    font-size: 1.1rem;
}

.blog-section {
    padding: 60px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 30, 140, .13);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f5e8ef;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #6b6b7b;
    line-height: 1.7;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: gap .2s;
}

.blog-card:hover .blog-card-link {
    gap: 10px;
}

.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: #9b7e8e;
}

.blog-empty i {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
    opacity: .4;
}