/* Footer 5: Bold Split — Dark left brand+cats · Light right recent posts */

.chzgc5 { background: var(--color-footer-bg); }

.chzgc5__body { display: grid; grid-template-columns: 1fr 1.6fr; }

/* ── Left dark panel ── */
.chzgc5__left {
    background: var(--color-secondary);
    padding: 48px 40px; display: flex; flex-direction: column; gap: 32px;
    border-right: 1px solid rgba(255,255,255,.06);
}
.chzgc5__brand { display: flex; flex-direction: column; gap: 10px; }
.chzgc5__name {
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900;
    color: #fff; text-decoration: none; letter-spacing: -.02em;
}
.chzgc5__desc { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }
.chzgc5__brand .custom-logo { max-height: 44px; width: auto; filter: brightness(0) invert(1); }

.chzgc5__title {
    font-size: .62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .14em; color: rgba(255,255,255,.4);
    margin-bottom: 14px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.chzgc5__links { list-style: none; }
.chzgc5__links li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.chzgc5__links a {
    color: rgba(255,255,255,.6); font-size: .82rem;
    text-decoration: none; transition: color .2s, padding-left .2s;
    display: flex; align-items: center; gap: 6px;
}
.chzgc5__links a:hover { color: var(--color-primary); padding-left: 6px; }

/* ── Right light panel ── */
.chzgc5__right {
    background: var(--color-footer-bg); padding: 48px 40px;
}
.chzgc5__title--light {
    font-size: .62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .14em; color: var(--color-footer-heading);
    margin-bottom: 20px; padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}
.chzgc5__posts { display: flex; flex-direction: column; gap: 0; }
.chzgc5__post {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 0; border-bottom: 1px solid var(--color-footer-border);
    text-decoration: none; transition: background .2s;
}
.chzgc5__post:last-child { border-bottom: none; }
.chzgc5__post:hover { background: color-mix(in srgb, var(--color-footer-bg) 92%, var(--color-primary)); }
.chzgc5__post-img {
    flex: 0 0 64px; width: 64px; height: 48px; border-radius: 4px;
    background: var(--color-footer-border) center/cover no-repeat; flex-shrink: 0;
}
.chzgc5__post-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.chzgc5__post-cat {
    font-size: .58rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--color-primary);
}
.chzgc5__post-title {
    font-size: .82rem; font-weight: 600; color: var(--color-footer-link);
    line-height: 1.4; transition: color .2s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.chzgc5__post:hover .chzgc5__post-title { color: var(--color-footer-link-hover); }
.chzgc5__post-date { font-size: .6rem; color: var(--color-footer-text); }

/* ── Bottom bar ── */
.chzgc5__bottom {
    background: color-mix(in srgb, var(--color-footer-bg) 80%, #000);
    padding: 16px 40px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 10px;
    border-top: 1px solid var(--color-footer-border);
}
.chzgc5__bottom p { font-size: .75rem; color: var(--color-footer-text); margin: 0; }
.chzgc5__bottom a { color: var(--color-footer-link); text-decoration: none; }
.chzgc5__bottom a:hover { color: var(--color-footer-link-hover); }
.chzgc5__nav { display: flex; list-style: none; gap: 16px; margin: 0; padding: 0; }
.chzgc5__nav a { color: var(--color-footer-link); font-size: .75rem; text-decoration: none; transition: color .2s; }
.chzgc5__nav a:hover { color: var(--color-footer-link-hover); }

@media (max-width: 900px) {
    .chzgc5__body { grid-template-columns: 1fr; }
    .chzgc5__left { padding: 36px 5%; }
    .chzgc5__right { padding: 36px 5%; }
    .chzgc5__bottom { padding: 14px 5%; }
}
@media (max-width: 480px) {
    .chzgc5__bottom { flex-direction: column; text-align: center; }
}
