.content-block--wide {
    max-width: 860px;
    margin: 0 auto;
}

.section--bg-weiss {
    background: #fff;
}

.section--bg-creme {
    background: var(--color-cream, #f8f4e8);
}

.section--bg-grau {
    background: #f3f3f3;
}

.section--bg-gruen {
    background: var(--color-green, #6f9d75);
    color: #fff;
}

.section--space-top-klein {
    padding-top: 48px;
}

.section--space-top-standard {
    padding-top: 88px;
}

.section--space-top-gross {
    padding-top: 128px;
}

.section--space-bottom-klein {
    padding-bottom: 48px;
}

.section--space-bottom-standard {
    padding-bottom: 88px;
}

.section--space-bottom-gross {
    padding-bottom: 128px;
}

.image-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.image-group--1 {
    grid-template-columns: 1fr;
}

.image-group--2 {
    grid-template-columns: repeat(2, 1fr);
}

.image-group__item {
    margin: 0;
}

.image-group__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.image-group__item figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .image-group,
    .image-group--2,
    .image-group--3 {
        grid-template-columns: 1fr;
    }
}

.projekt-auswahl__inner {
    display: grid;
    grid-template-columns: 1.25fr 3fr;
    gap: 28px;
    align-items: start;
}

.projekt-auswahl__intro {
    max-width: 300px;
    padding-top: 32px;
}

.projekt-auswahl__grid {
    display: grid;
    gap: 28px;
}

.projekt-auswahl__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.projekt-auswahl__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projekt-auswahl__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projekt-auswahl__image-link {
    display: block;
}

.projekt-auswahl__card h3 a {
    color: inherit;
    text-decoration: none;
}

.projekt-auswahl__excerpt {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .projekt-auswahl__inner {
        grid-template-columns: 1fr;
    }

    .projekt-auswahl__intro {
        max-width: 520px;
        padding-top: 0;
    }

    .projekt-auswahl__grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .projekt-auswahl__grid,
    .projekt-auswahl__grid--2,
    .projekt-auswahl__grid--3,
    .projekt-auswahl__grid--4 {
        grid-template-columns: 1fr;
    }
}

/* UVP Hero-Slider */
.uvp-hero-slider {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    background: var(--color-green, #62845f);
    overflow: hidden;
}

.uvp-hero-slider__track {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.uvp-hero-slider__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.025);
    transition: opacity 900ms ease-in-out, transform 4500ms ease;
}

.uvp-hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.uvp-hero-slider__overlay {
    background: rgba(0, 0, 0, var(--uvp-hero-slider-overlay-opacity, 0.12));
}

.uvp-hero-slider__content {
    opacity: 0;
    transform: translateY(24px);
    animation: none;
}

.uvp-hero-slider__slide.is-active .uvp-hero-slider__content {
    animation: uvpHeroSliderContentIn 900ms ease forwards 180ms;
}

.uvp-hero-slider__text {
    max-width: 520px;
    margin: -10px 0 28px;
    color: var(--color-white, #fff);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.35;
}

.uvp-hero-slider__controls {
    position: absolute;
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 36px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
}

.uvp-hero-slider__button,
.uvp-hero-slider__dot {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.uvp-hero-slider__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-green, #62845f);
    font-size: 34px;
    line-height: 1;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.uvp-hero-slider__button:hover,
.uvp-hero-slider__button:focus-visible {
    background: var(--color-green, #62845f);
    color: var(--color-white, #fff);
    transform: translateY(-1px);
}

.uvp-hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uvp-hero-slider__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    transition: background-color 220ms ease, transform 220ms ease;
}

.uvp-hero-slider__dot.is-active {
    background: var(--color-green, #62845f);
    transform: scale(1.18);
}

@keyframes uvpHeroSliderContentIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .uvp-hero-slider__controls {
        right: 24px;
        bottom: 24px;
    }

    .uvp-hero-slider__text {
        margin-top: -4px;
    }
}

@media (max-width: 767px) {
    .uvp-hero-slider {
        min-height: 560px;
        height: 70vh;
    }

    .uvp-hero-slider__button {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}

/* UVP Startseitenmodule */
.section--leistungen-auswahl .section-title .content {
    max-width: 720px;
    margin: 12px auto 0;
}

.button-row--center {
    justify-content: center;
    margin-top: 36px;
}

.section--highlight-teaser .featured-story__box .content p:last-child {
    margin-bottom: 0;
}

/* Leistungs-Auswahl: Desktop-Spalten aus dem ACF-Feld */
.services-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* UVP Modul-Feinschliff v24 */
/* Leistungs-Auswahl: Bei Hintergrund "Creme" bleibt nur der obere Streifen creme, der Kartenbereich darunter weiß. */
.section--leistungen-auswahl.section--bg-creme {
    background: linear-gradient(
        to bottom,
        var(--color-cream, #f5f0dc) 0,
        var(--color-cream, #f5f0dc) 280px,
        var(--color-white, #fff) 280px,
        var(--color-white, #fff) 100%
    );
}

.section--leistungen-auswahl.section--bg-creme .section-bg {
    display: none;
}

.section--leistungen-auswahl.section--bg-gruen .section-bg,
.section--leistungen-auswahl.section--bg-grau .section-bg,
.section--leistungen-auswahl.section--bg-weiss .section-bg {
    display: none;
}

/* Grüne Modul-Hintergründe: Kontrast global verbessern. */
.section--bg-gruen,
.section--bg-gruen h1,
.section--bg-gruen h2,
.section--bg-gruen h3,
.section--bg-gruen h4,
.section--bg-gruen h5,
.section--bg-gruen h6,
.section--bg-gruen p,
.section--bg-gruen .content,
.section--bg-gruen .eyebrow,
.section--bg-gruen .arrow-link,
.section--bg-gruen .text-link {
    color: var(--color-white, #fff);
}

.section--bg-gruen .button {
    background: var(--color-white, #fff);
    color: var(--color-green, #618d65);
}

.section--bg-gruen .button:hover,
.section--bg-gruen .button:focus-visible {
    background: var(--color-text, #111);
    color: var(--color-white, #fff);
}

/* Inhalte in weißen Karten/Boxen behalten ihre dunkle Lesefarbe auch auf grünem Modulhintergrund. */
.section--bg-gruen .service-card,
.section--bg-gruen .featured-story__box {
    color: var(--color-text, #111);
}

.section--bg-gruen .service-card h1,
.section--bg-gruen .service-card h2,
.section--bg-gruen .service-card h3,
.section--bg-gruen .service-card h4,
.section--bg-gruen .service-card p,
.section--bg-gruen .service-card .arrow-link,
.section--bg-gruen .featured-story__box h1,
.section--bg-gruen .featured-story__box h2,
.section--bg-gruen .featured-story__box h3,
.section--bg-gruen .featured-story__box h4,
.section--bg-gruen .featured-story__box p,
.section--bg-gruen .featured-story__box .content {
    color: var(--color-text, #111);
}

.section--bg-gruen .featured-story__box .eyebrow {
    color: var(--color-green-dark, #567559);
}

.section--bg-gruen .featured-story__box .button {
    background: var(--color-green, #618d65);
    color: var(--color-white, #fff);
}

.section--bg-gruen .featured-story__box .button:hover,
.section--bg-gruen .featured-story__box .button:focus-visible {
    background: var(--color-text, #111);
    color: var(--color-white, #fff);
}

/* Text-Bild-Modul: Abstand zwischen Textinhalt und Button wie in der Vorlage. */
.section--text-image .content-block .content + .button,
.section--text-image .content-block > .button {
    margin-top: 26px;
}

/* UVP Card-Link-Ausrichtung v26
   Links innerhalb von Leistungs-/Projektkarten werden am unteren Kartenbereich ausgerichtet.
   Dadurch gibt die längste Überschrift pro Reihe die Link-Höhe vor. */
.service-card {
    height: 100%;
}

.service-card .arrow-link {
    margin-top: auto;
    padding-top: 16px;
}

.projekt-auswahl__grid {
    align-items: stretch;
}

.project-card,
.projekt-auswahl__card,
.related-project-card,
.project-listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card .arrow-link,
.projekt-auswahl__card .arrow-link,
.related-project-card .arrow-link,
.project-listing-card .arrow-link {
    margin-top: auto;
    padding-top: 16px;
}

.project-related__carousel .project-related__cards,
.project-listing__top-carousel .project-listing__top {
    align-items: stretch;
}

/* UVP Interaktionen v27 */
.service-card--link,
.project-card--link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-card--link {
    transition:
        background-color 220ms ease 70ms,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.service-card--link:hover,
.service-card--link:focus-visible {
    background-color: #f4f4f2;
}

.service-card--link .arrow-link,
.project-card--link .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 220ms ease;
}

.service-card--link:hover .arrow-link,
.service-card--link:focus-visible .arrow-link,
.project-card--link:hover .arrow-link,
.project-card--link:focus-visible .arrow-link {
    transform: translateX(6px);
}

.project-card--link:hover,
.project-card--link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.project-card__image,
.projekt-auswahl__image-link,
.related-project-card__image-link {
    display: block;
}

.project-card__title,
.project-card--link .h3 {
    display: block;
    color: var(--color-text, #111);
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.project-card--link .eyebrow {
    display: block;
}

.uvp-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--color-green, #618d65);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease,
        background-color 220ms ease;
}

.uvp-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.uvp-back-to-top:hover,
.uvp-back-to-top:focus-visible {
    background: var(--color-text, #111);
}

@media (max-width: 767px) {
    .uvp-back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

.project-card .project-card__title {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
}

/* UVP Link-Abstand v28 */
.text-link,
.arrow-link {
    gap: 10px;
}

/* UVP Team-Übersicht v32 */
.team-overview-module__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    margin-bottom: clamp(72px, 8vw, 120px);
}

.team-overview-module__intro-content {
    max-width: 560px;
}

.team-overview-module__intro-content h1 {
    margin: 0 0 28px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.team-overview-module__intro-content .content {
    font-weight: 700;
    line-height: 1.45;
}

.team-overview-module__intro-image {
    margin: 0;
}

.team-overview-module__intro-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
}

.team-overview-module__groups {
    display: grid;
    gap: clamp(72px, 8vw, 112px);
}

.team-business-area__title {
    margin-bottom: 48px;
}

.team-grid {
    --team-columns: 3;
    display: grid;
    grid-template-columns: repeat(var(--team-columns), minmax(0, 1fr));
    gap: 48px 34px;
}

.team-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.team-card__image {
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--color-cream, #f7f2e6);
}

.team-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    transition: transform 380ms ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.025);
}

.team-card__content h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.08;
}

.team-card__job {
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.35;
}

.team-card__contact {
    display: grid;
    gap: 6px;
    margin-top: auto;
    font-weight: 700;
}

.team-card__contact a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease;
}

.team-card__contact a:hover,
.team-card__contact a:focus-visible {
    color: var(--color-green, #618d65);
}

.section--bg-gruen .team-card__contact a:hover,
.section--bg-gruen .team-card__contact a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 1024px) {
    .team-grid,
    .team-grid--columns-3,
    .team-grid--columns-4 {
        --team-columns: 2 !important;
    }
}

@media (max-width: 767px) {
    .team-overview-module__intro {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 64px;
    }

    .team-overview-module__intro-content h1 {
        font-size: clamp(36px, 12vw, 52px);
    }

    .team-grid,
    .team-grid--columns-2,
    .team-grid--columns-3,
    .team-grid--columns-4 {
        --team-columns: 1 !important;
        gap: 42px;
    }

    .team-business-area__title {
        margin-bottom: 34px;
    }
}

/* UVP Team-Übersicht v33 */
.team-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: center;
    margin-bottom: clamp(86px, 9vw, 136px);
}

.team-hero__media {
    position: relative;
    min-height: clamp(390px, 40vw, 540px);
}

.team-hero__shape {
    position: absolute;
    left: 8%;
    bottom: 18%;
    width: 68%;
    height: 54%;
    border-radius: 8px;
    background: var(--color-cream, #f7f2e6);
}

.team-hero__image {
    position: absolute;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.team-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-hero__image--left {
    left: 0;
    top: 30%;
    width: 42%;
    aspect-ratio: 1 / 1;
}

.team-hero__image--top {
    left: 45%;
    top: 0;
    width: 35%;
    aspect-ratio: 1 / 1;
}

.team-hero__image--bottom {
    right: 0;
    bottom: 0;
    width: 50%;
    aspect-ratio: 1.14 / 1;
}

.team-hero__content {
    max-width: 560px;
}

.team-hero__content h1 {
    margin: 0 0 28px;
    font-size: clamp(48px, 5vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.team-hero__content .content {
    max-width: 520px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.team-overview-module__intro {
    display: none;
}

.team-overview-module__groups {
    display: grid;
    gap: clamp(72px, 8vw, 118px);
}

.team-business-area__title {
    margin-bottom: 34px;
}

.team-business-area__title h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}

.team-grid {
    --team-columns: 3;
    display: grid;
    grid-template-columns: repeat(var(--team-columns), minmax(0, 1fr));
    gap: 58px clamp(42px, 5vw, 86px);
}

.team-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.team-card__image {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-cream, #f7f2e6);
}

.team-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.16 / 1;
    object-fit: cover;
    transition: transform 380ms ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.025);
}

.team-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.team-card__content h3 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.team-card__job {
    margin: 0 0 24px;
    color: var(--color-green, #618d65);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.team-card__contact,
.team-card__contact-text {
    display: grid;
    gap: 6px;
    margin-top: auto;
    font-weight: 700;
}

.team-card__contact-text p {
    margin: 0;
}

.team-card__contact-text a,
.team-card__contact a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease;
}

.team-card__contact-text a:hover,
.team-card__contact-text a:focus-visible,
.team-card__contact a:hover,
.team-card__contact a:focus-visible {
    color: var(--color-green, #618d65);
}

.team-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.team-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 4px;
    background: var(--color-green, #618d65);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.team-card__button:hover,
.team-card__button:focus-visible {
    background: var(--color-text, #111);
    color: #fff;
    transform: translateY(-1px);
}

.section--bg-gruen .team-card__job {
    color: #fff;
}

.section--bg-gruen .team-card__button {
    background: #fff;
    color: var(--color-green, #618d65);
}

.section--bg-gruen .team-card__button:hover,
.section--bg-gruen .team-card__button:focus-visible {
    background: var(--color-text, #111);
    color: #fff;
}

@media (max-width: 1024px) {
    .team-hero {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .team-hero__media {
        max-width: 720px;
        min-height: 460px;
    }

    .team-grid,
    .team-grid--columns-3,
    .team-grid--columns-4 {
        --team-columns: 2 !important;
    }
}

@media (max-width: 767px) {
    .team-hero {
        gap: 34px;
        margin-bottom: 70px;
    }

    .team-hero__media {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-hero__shape {
        display: none;
    }

    .team-hero__image,
    .team-hero__image--left,
    .team-hero__image--top,
    .team-hero__image--bottom {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 11;
    }

    .team-hero__content h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .team-grid,
    .team-grid--columns-2,
    .team-grid--columns-3,
    .team-grid--columns-4 {
        --team-columns: 1 !important;
        gap: 48px;
    }

    .team-card__content h3 {
        font-size: 25px;
    }
}

/* UVP Team-Übersicht v34: Bildmosaik-Abstände wie Leistungsdetailseite */
.team-hero__media {
    min-height: 520px;
    max-width: 560px;
}

.team-hero__shape {
    left: 40px;
    top: 154px;
    bottom: auto;
    width: 312px;
    height: 292px;
}

.team-hero__image--left {
    left: 0;
    top: 116px;
    width: 250px;
    height: 250px;
    aspect-ratio: auto;
}

.team-hero__image--top {
    left: 270px;
    top: 0;
    width: 200px;
    height: 200px;
    aspect-ratio: auto;
}

.team-hero__image--bottom {
    left: 270px;
    right: auto;
    top: 235px;
    bottom: auto;
    width: 283px;
    height: 283px;
    aspect-ratio: auto;
    z-index: 5;
}

@media (max-width: 1180px) {
    .team-hero__media {
        transform-origin: left center;
    }
}

@media (max-width: 960px) {
    .team-hero__media {
        min-height: 430px;
        max-width: 460px;
    }

    .team-hero__shape {
        left: 33px;
        top: 127px;
        width: 257px;
        height: 240px;
    }

    .team-hero__image--left {
        top: 95px;
        width: 205px;
        height: 205px;
    }

    .team-hero__image--top {
        left: 222px;
        width: 164px;
        height: 164px;
    }

    .team-hero__image--bottom {
        left: 222px;
        top: 193px;
        width: 232px;
        height: 232px;
    }
}

@media (max-width: 620px) {
    .team-hero__media {
        min-height: 345px;
        max-width: 360px;
    }

    .team-hero__shape {
        left: 26px;
        top: 99px;
        width: 205px;
        height: 192px;
    }

    .team-hero__image--left {
        top: 74px;
        width: 160px;
        height: 160px;
    }

    .team-hero__image--top {
        left: 173px;
        width: 128px;
        height: 128px;
    }

    .team-hero__image--bottom {
        left: 173px;
        top: 150px;
        width: 181px;
        height: 181px;
    }
}


/* UVP v35: Team-Karten Typografie/Kontaktdaten feinjustiert */
.team-card__contact,
.team-card__contact-text {
    display: grid;
    gap: 6px;
    margin-top: auto;
    font-weight: 500;
    font-size: 16px;
}

.team-card__content h3 {
    margin: 0 0 6px;
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
