.category-archive-layout {
    gap: 36px;
}

.category-archive-hero {
    position: relative;
    overflow: hidden;
    max-width: 860px;
    padding: 32px;
    border: 1px solid rgba(16, 38, 58, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.98));
    box-shadow: 0 20px 34px rgba(7, 19, 29, 0.06);
}

.category-archive-hero.has-cover-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(6, 18, 28, 0.84), rgba(6, 18, 28, 0.36)),
        var(--category-cover-image) center / cover no-repeat;
}

.category-archive-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.category-archive-hero.has-cover-image .eyebrow,
.category-archive-hero.has-cover-image h1,
.category-archive-hero.has-cover-image .category-archive-description {
    color: #fff;
}

.category-archive-description {
    color: #3a4653;
    line-height: 1.8;
}

.category-section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.category-section-head h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.category-section-head p {
    margin: 0;
    color: #566271;
}

.category-child-grid,
.category-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-child-card,
.category-post-card,
.category-empty-state {
    padding: 24px;
    border: 1px solid rgba(16, 38, 58, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
    box-shadow: 0 16px 32px rgba(7, 19, 29, 0.06);
}

.category-child-card {
    display: grid;
    gap: 14px;
}

.category-child-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #d7e1ec 0%, #edf2f7 100%);
}

.category-child-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-child-card h3,
.category-post-card h2 {
    margin: 0;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    line-height: 1.25;
}

.category-child-card p,
.category-post-card p {
    margin: 0;
    color: #4c5967;
    line-height: 1.7;
}

.category-grandchild-list {
    display: grid;
    gap: 8px;
    padding-top: 4px;
}

.category-grandchild-list a {
    color: #243241;
    font-size: 0.94rem;
    line-height: 1.45;
}

.category-grandchild-list a:hover {
    color: #006cac;
}

.category-child-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #006cac;
    font-weight: 700;
}

.category-child-link::after {
    content: ">>";
    letter-spacing: -0.08em;
}

.category-post-card .card-label {
    margin-bottom: 10px;
}

@media (max-width: 1100px) {
    .category-child-grid,
    .category-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .category-child-grid,
    .category-post-grid {
        grid-template-columns: 1fr;
    }

    .category-child-card,
    .category-post-card,
    .category-empty-state {
        padding: 20px;
    }
}