html.mh-kat-page body {
    background:
        radial-gradient(900px 420px at 8% -10%, rgba(163, 21, 35, .08), transparent 60%),
        radial-gradient(700px 380px at 100% 0%, rgba(201, 146, 92, .12), transparent 55%),
        #f3eee8;
}

html.mh-kat-page .mh-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .92);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(70, 28, 18, .05);
    font-size: 13px;
    font-weight: 700;
    color: #7a6a65;
}

html.mh-kat-page .mh-breadcrumb a {
    color: #a31523 !important;
    text-decoration: none !important;
}

html.mh-kat-page .mh-breadcrumb a:hover {
    text-decoration: underline !important;
}

html.mh-kat-page .mh-breadcrumb__sep {
    color: #cbb8b0;
}

html.mh-kat-page .mh-breadcrumb__current {
    color: #1a1210;
}

.mh-kat-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 22px;
    padding: 28px 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 248, 243, .9)),
        #fff;
    box-shadow: 0 12px 32px rgba(70, 28, 18, .07);
    animation: mhKatIn .45s ease both;
}

.mh-kat-hero__glow {
    position: absolute;
    right: -40px;
    top: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 21, 35, .16), transparent 70%);
    pointer-events: none;
}

.mh-kat-hero__eyebrow {
    position: relative;
    margin: 0 0 8px;
    color: #a31523;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mh-kat-hero__title {
    position: relative;
    margin: 0 0 10px !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: -.03em;
    color: #1a1210 !important;
}

.mh-kat-hero__desc {
    position: relative;
    max-width: 62ch;
    margin: 0 0 14px;
    color: #6f5f59;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.mh-kat-hero__meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mh-kat-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7f1ec;
    color: #5c4d48;
    font-size: 13px;
    font-weight: 700;
}

.mh-kat-hero__chip i {
    color: #a31523;
}

.mh-kat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 28px;
}

.mh-kat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(70, 28, 18, .06);
    transition: transform .22s ease, box-shadow .22s ease;
    animation: mhKatIn .5s ease both;
}

.mh-kat-card:nth-child(1) { animation-delay: .02s; }
.mh-kat-card:nth-child(2) { animation-delay: .06s; }
.mh-kat-card:nth-child(3) { animation-delay: .1s; }
.mh-kat-card:nth-child(4) { animation-delay: .14s; }
.mh-kat-card:nth-child(5) { animation-delay: .18s; }
.mh-kat-card:nth-child(6) { animation-delay: .22s; }

.mh-kat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(70, 28, 18, .12);
}

.mh-kat-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 280px;
}

.mh-kat-card__media {
    display: block;
    height: 190px;
    background: #efe7e1 center / cover no-repeat;
    transition: transform .35s ease;
}

.mh-kat-card:first-child .mh-kat-card__media {
    height: 100%;
    min-height: 280px;
}

.mh-kat-card:hover .mh-kat-card__media {
    transform: scale(1.04);
}

.mh-kat-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px 18px;
    flex: 1;
}

.mh-kat-card:first-child .mh-kat-card__body {
    justify-content: center;
    padding: 28px 30px;
}

.mh-kat-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 14px;
    color: #8a7872;
    font-size: 12px;
    font-weight: 600;
}

.mh-kat-card__meta i {
    margin-right: 4px;
    opacity: .85;
}

.mh-kat-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.mh-kat-card:first-child .mh-kat-card__title {
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.25;
}

.mh-kat-card__title a {
    color: #1a1210 !important;
    text-decoration: none !important;
}

.mh-kat-card__title a:hover {
    color: #a31523 !important;
}

.mh-kat-card__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #a31523 !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.mh-kat-card__more i {
    transition: transform .2s ease;
}

.mh-kat-card:hover .mh-kat-card__more i {
    transform: translateX(4px);
}

@keyframes mhKatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .mh-kat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-kat-card:first-child {
        grid-template-columns: 1fr;
    }

    .mh-kat-card:first-child .mh-kat-card__media {
        min-height: 210px;
        height: 210px;
    }
}

@media (max-width: 640px) {
    .mh-kat-hero {
        padding: 22px 18px 18px;
        border-radius: 18px;
    }

    .mh-kat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mh-kat-card:first-child .mh-kat-card__body {
        padding: 18px;
    }

    .mh-kat-card__media,
    .mh-kat-card:first-child .mh-kat-card__media {
        height: 180px;
        min-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mh-kat-hero,
    .mh-kat-card,
    .mh-kat-card__media,
    .mh-kat-card__more i {
        animation: none !important;
        transition: none !important;
    }
}
