/* =========================
   Homepage category tabs
   ========================= */

.kontaktum-category-tabs {
    position: relative;
    z-index: 5;
    margin-top: -48px;
    margin-bottom: 36px;
    gap: 24px;
}

.kontaktum-category-tab {
    position: relative;
    min-height: 96px;
    padding: 24px 28px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 76, 0.08);
    box-shadow: 0 12px 28px rgba(15, 42, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kontaktum-category-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 42, 76, 0.18);
    background: linear-gradient(135deg, #eef5ff, #f5f0ff);
}

.kontaktum-category-tab p,
.kontaktum-category-tab h2,
.kontaktum-category-tab h3,
.kontaktum-category-tab a {
    margin: 0;
    color: #0f2a4c;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.kontaktum-category-tab a {
    position: static;
    z-index: 3;
}

.kontaktum-category-tab a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.kontaktum-category-tab.is-active {
    background: linear-gradient(135deg, #0f5fd7, #7048e8);
    color: #ffffff;
}

.kontaktum-category-tab.is-active:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 42, 76, 0.25);
}

.kontaktum-category-tab.is-active p,
.kontaktum-category-tab.is-active h2,
.kontaktum-category-tab.is-active h3,
.kontaktum-category-tab.is-active a {
    color: #ffffff !important;
}