.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Dölj scrollbar i mobilen (innehållet förblir scrollbart) */
@media (max-width: 767px) {
    html, body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Standardiserad typografi – samma font och storlek på alla sidor (desktop + mobil).
   Används istället för spridda font-*/text-*/leading-* klasser på rubriker. */
.t-h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .t-h1 { font-size: 56px; line-height: 64px; }
}

.t-h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
}
@media (min-width: 768px) {
    .t-h2 { font-size: 40px; line-height: 48px; letter-spacing: -0.01em; }
}

.t-h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
@media (min-width: 768px) {
    .t-h3 { font-size: 28px; line-height: 36px; }
}

.t-h3-sm {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}
@media (min-width: 768px) {
    .t-h3-sm { font-size: 22px; line-height: 30px; }
}

.t-h4 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.t-label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.z-highest { z-index: 9999 !important; }
