:root {
    --color-brand: #111111;
    --color-cta: #FF5722;
    --text-muted: #666;
    --border: #ccc;
}

.cat-hero {
    background-color: var(--color-brand);
    color: #fff;
    padding: 60px 24px;
}
.cat-hero h1, .cat-hero h2, .cat-hero h3, .cat-hero p, .cat-hero span, .cat-hero strong, .cat-hero a:not(.btn-cta) {
    color: #fff;
}
.cat-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.cat-hero__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.6;
}
.cat-hero__subtitle {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: none;
    transition: background-color 0.2s;
}
.btn-cta:hover,
.btn-cta:focus {
    background-color: #e64a19;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.cat-articles {
    padding: 48px 24px;
}
.cat-articles__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-articles__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 32px;
    line-height: 1.6;
}

.cat-featured {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: stretch;
}
.cat-featured__image-wrap {
    flex: 0 0 58%;
    overflow: hidden;
    border-radius: 8px;
}
.cat-featured__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-featured__content {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
}
.cat-featured__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.6;
}
.cat-featured__title a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.2s;
}
.cat-featured__title a:hover,
.cat-featured__title a:focus {
    color: var(--color-cta);
}
.cat-featured__desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 12px;
    line-height: 1.6;
}
.cat-featured__date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cat-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.cat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.cat-card__image-wrap {
    overflow: hidden;
}
.cat-card__image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.cat-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 16px 16px 8px;
    line-height: 1.6;
}
.cat-card__title a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.2s;
}
.cat-card__title a:hover,
.cat-card__title a:focus {
    color: var(--color-cta);
}
.cat-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 16px 12px;
    line-height: 1.6;
}
.cat-card__date {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 16px 16px;
}

.cat-empty {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    padding: 40px 0;
    line-height: 1.6;
}

.cat-kpis {
    background-color: var(--color-brand);
    padding: 48px 24px;
}
.cat-kpis h2, .cat-kpis h3, .cat-kpis p, .cat-kpis span, .cat-kpis strong {
    color: #fff;
}
.cat-kpis__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-kpis__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 32px;
    text-align: center;
    line-height: 1.6;
}
.cat-kpis__grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.cat-kpi {
    text-align: center;
    padding: 24px;
    flex: 1;
    max-width: 280px;
}
.cat-kpi__icon {
    margin-bottom: 12px;
    color: var(--color-cta);
}
.cat-kpi__icon svg {
    width: 36px;
    height: 36px;
    display: inline-block;
}
.cat-kpi__value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 4px;
}
.cat-kpis .cat-kpi__label {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
}

.cat-data {
    padding: 48px 24px;
}
.cat-data__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-data__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 12px;
    line-height: 1.6;
}
.cat-data__intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 24px;
    max-width: 700px;
    line-height: 1.6;
}
.cat-data__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
}
.cat-data__table {
    width: 100%;
    border-collapse: collapse;
}
.cat-data__table th {
    background-color: var(--color-brand);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
}
.cat-data__table td {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: #333;
    line-height: 1.6;
}
.cat-data__table tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}
.cat-data__note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cat-compare {
    padding: 48px 24px;
    background-color: #f0f0f0;
}
.cat-compare__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-compare__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 12px;
    line-height: 1.6;
}
.cat-compare__intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 24px;
    max-width: 700px;
    line-height: 1.6;
}
.cat-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
}
.cat-compare__table {
    width: 100%;
    border-collapse: collapse;
}
.cat-compare__table th {
    background-color: var(--color-brand);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
}
.cat-compare__table td {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: #333;
    line-height: 1.6;
}
.cat-compare__table td:first-child {
    font-weight: 700;
}
.cat-compare__table tbody tr:nth-child(even) {
    background-color: #fff;
}
.cat-compare__note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cat-admin {
    padding: 48px 24px;
}
.cat-admin__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-admin__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 12px;
    line-height: 1.6;
}
.cat-admin__intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 32px;
    max-width: 700px;
    line-height: 1.6;
}
.cat-admin__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.cat-admin__item {
    padding: 24px;
    background-color: #f0f0f0;
    border-radius: 6px;
}
.cat-admin__item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 8px;
    line-height: 1.6;
}
.cat-admin__item p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.cat-disclaimer {
    padding: 24px 24px 48px;
    max-width: 1100px;
    margin: 0 auto;
}
.cat-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cat-hero {
        padding: 40px 16px;
    }
    .cat-hero__title {
        font-size: 1.8rem;
    }
    .cat-hero__subtitle {
        font-size: 1rem;
    }
    .cat-articles {
        padding: 32px 16px;
    }
    .cat-featured {
        flex-direction: column;
        gap: 20px;
    }
    .cat-featured__image-wrap {
        flex: none;
    }
    .cat-featured__content {
        flex: none;
        padding: 0;
    }
    .cat-grid {
        grid-template-columns: 1fr;
    }
    .cat-kpis {
        padding: 32px 16px;
    }
    .cat-kpis__grid {
        flex-direction: column;
        align-items: center;
    }
    .cat-data {
        padding: 32px 16px;
    }
    .cat-compare {
        padding: 32px 16px;
    }
    .cat-admin {
        padding: 32px 16px;
    }
    .cat-admin__grid {
        grid-template-columns: 1fr;
    }
    .cat-disclaimer {
        padding: 16px 16px 32px;
    }
}

@media (max-width: 480px) {
    .cat-hero__title {
        font-size: 1.5rem;
    }
    .cat-card__image-wrap img {
        height: 160px;
    }
    .cat-articles__heading {
        font-size: 1.3rem;
    }
    .cat-data__heading,
    .cat-compare__heading,
    .cat-admin__heading,
    .cat-kpis__heading {
        font-size: 1.3rem;
    }
}