/* Category Detail Page */
.category-hero {
    background: linear-gradient(135deg, #f6ede4 0%, #ead8c6 100%);
    border: 1px solid #e4d5c7;
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 14px 40px rgba(68, 45, 24, 0.08);
}

.category-hero h1 {
    margin: 0 0 14px;
    font-size: 42px;
    color: #2f241d;
    line-height: 1.25;
}

.category-hero p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5c4c40;
}

.post-count {
    color: #8b7a6b;
    font-size: 14px;
    font-weight: 700;
}

.category-post-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wide-post-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    background: #fffdfa;
    border: 1px solid #eadfd4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(61, 40, 24, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.wide-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(61, 40, 24, 0.08);
}

.wide-thumb {
    display: block;
    min-height: 190px;
    background: linear-gradient(135deg, #ead8c6, #c5a78a);
    overflow: hidden;
}

.wide-thumb img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.wide-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 34%),
        linear-gradient(135deg, #9a6a45, #d3b091);
}

.wide-thumb-placeholder span {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.wide-post-body {
    padding: 24px 24px 24px 0;
    min-width: 0;
}

.wide-post-body h3 {
    margin: 0 0 10px;
    color: #2d241d;
    font-size: 24px;
    line-height: 1.4;
}

.wide-post-body h3 a:hover {
    color: #9a6a45;
}

.wide-post-body p {
    margin: 0 0 16px;
    color: #635548;
    line-height: 1.75;
    font-size: 15px;
}

.empty-category-posts {
    padding: 50px 24px;
    border: 1px dashed #d8c9ba;
    border-radius: 18px;
    background: #fffdfa;
    text-align: center;
    color: #6b5a4d;
}

.empty-category-posts strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    color: #2d241d;
}

.empty-category-posts p {
    margin: 0;
    line-height: 1.7;
}

.empty-category-posts b {
    color: #916542;
}

.pagination-wrap {
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .wide-post-card {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .category-hero {
        padding: 30px;
        border-radius: 22px;
    }

    .category-hero h1 {
        font-size: 32px;
    }

    .wide-post-card {
        grid-template-columns: 1fr;
    }

    .wide-post-body {
        padding: 0 20px 22px;
    }

    .wide-thumb,
    .wide-thumb img,
    .wide-thumb-placeholder {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .category-hero h1 {
        font-size: 28px;
    }

    .category-hero p {
        font-size: 15px;
    }

    .wide-post-body h3 {
        font-size: 20px;
    }
}