@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #231F20;
    color: #EFF4F2;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
}

/* TYPO SYSTEM – desktop defaults */

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1rem;
}

/* FADE-IN – alle Sections */

.trackrunner__grid,
.info__grid,
.sponsors__title,
.logo-carousel,
.events__grid,
.contact__inner,
.gallery__stage,
.gallery__thumbs,
.merch__inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.trackrunner__grid.is-visible,
.info__grid.is-visible,
.sponsors__title.is-visible,
.logo-carousel.is-visible,
.events__grid.is-visible,
.contact__inner.is-visible,
.gallery__stage.is-visible,
.gallery__thumbs.is-visible,
.merch__inner.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__video iframe {
    width: 100%;
    height: 100%;
    transform: scale(1.15);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #EFF4F2;
    text-align: center;
}

.hero__content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.hero__content img {
    width: 70%;
    max-width: 280px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 31, 32, 0.55);
    z-index: 1;
}


/* ============================================================
   INTRO
   ============================================================ */

.intro {
    background: #231F20;
    color: #EFF4F2;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.intro__container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.intro__container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.intro__title {
    color: #F9128B;
    font-size: 2.5rem;
    line-height: 1.2;
}

.intro__subtitle {
    font-size: 1rem;
    font-weight: 500;
}

.intro__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.intro__text p {
    margin: 0;
}

.intro__image img {
    width: 500px;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.intro__line {
    width: 50vw;
    height: 2px;
    background: #EFF4F2;
    margin: 0 auto;
    opacity: 0.8;
}


/* ============================================================
   MEETS
   ============================================================ */

.meets {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    color: #EFF4F2;
}

.meets__bg {
    position: absolute;
    inset: 0;
    background: url("../images/Sandner/sandner_40_right.jpg") center/cover no-repeat;
    transform: scale(1.05);
}

.meets::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(33, 50, 44, 0.6);
    z-index: 1;
}

.meets__container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.meets__container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.meets__title {
    color: #F9128B;
    font-size: 2.5rem;
    line-height: 1.2;
}

.meets__title::after {
    content: "";
    display: block;
    width: 50vw;
    height: 2px;
    background: #EFF4F2;
    margin-top: 20px;
}

.meets__text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    text-align: justify;
    hyphens: auto;
}

.meets__tag {
    font-weight: 700;
}


/* ============================================================
   TRACKRUNNER
   ============================================================ */

.trackrunner {
    background: #231F20;
    color: #EFF4F2;
    padding: 80px 20px;
    min-height: 90vh;
}

.trackrunner__title {
    text-align: center;
    font-size: 2.5rem;
    color: #F9128B;
    margin-bottom: 50px;
}

.trackrunner__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.trackrunner__content {
    background: #EFF4F2;
    color: #231F20;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trackrunner__lead {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.trackrunner__text {
    font-size: 0.875rem;
    line-height: 1.6;
}


/* ============================================================
   INFO
   ============================================================ */

.info {
    background: #231F20;
    color: #EFF4F2;
    padding: 80px 20px;
}

.info__title {
    text-align: center;
    font-size: 2.5rem;
    color: #F9128B;
    margin-bottom: 50px;
}

.info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info__card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info__card h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.info__card p {
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
}

.info__card img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.info__card:nth-child(-n+3) img {
    height: 600px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-position: center;
    display: block;
}

.info__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9128B;
    color: #231F20;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: fit-content;
}

.info__button-icon {
    display: flex;
}

.info__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* ============================================================
   PARALLAX
   ============================================================ */

.parallax {
    height: 70vh;
    background-image: url("../images/Sandner/sandner_33.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* ============================================================
   SPONSORS / LOGO CAROUSEL
   ============================================================ */

.sponsors {
    padding: 60px 20px;
    background: #231F20;
    text-align: center;
    overflow: hidden;
}

.sponsors__title {
    color: #F9128B;
    font-size: 2rem;
    margin-bottom: 30px;
}

.logo-carousel {
    background: #fff;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-carousel__track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logo-carousel__group {
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 0 8vw;
}

.logo-carousel__group img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ============================================================
   EVENTS
   ============================================================ */

.events {
    background: #231F20;
    color: #EFF4F2;
    padding: 80px 20px;
}

.events__title {
    text-align: center;
    font-size: 2.5rem;
    color: #F9128B;
    margin-bottom: 50px;
}

.events__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.events__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events__media img {
    object-fit: contain;
    width: 100%;
    display: block;
}

.events__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events__content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
}

.events__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9128B;
    color: #231F20;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: fit-content;
}

.events__button-icon {
    display: flex;
}

.events__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.events__card--center {
    justify-content: center;
}

.events__content p:last-of-type {
    margin-bottom: 10px;
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background-image: url("../images/Sandner/MG3360.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #EFF4F2;
}

.contact__overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 50, 44, 0.72);
}

.contact__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact__heading {
    display: flex;
    align-items: center;
}

.contact__title {
    font-size: 2.5rem;
    color: #F9128B;
    line-height: 1.2;
}

.contact__boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__box {
    background: rgba(239, 244, 242, 0.07);
    border: 1px solid rgba(239, 244, 242, 0.15);
    border-top: 3px solid #F9128B;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.contact__box-title {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #F9128B;
    letter-spacing: 0.05em;
}

.contact__box p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact__list svg {
    flex-shrink: 0;
    color: #F9128B;
}

.contact__list a {
    color: #EFF4F2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__list a:hover {
    color: #F9128B;
}

.contact__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #EFF4F2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    width: fit-content;
}

.contact__social:hover {
    color: #F9128B;
}

.contact__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9128B;
    color: #231F20;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: fit-content;
    margin-top: auto;
}

.contact__button-icon {
    display: flex;
}

.contact__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
    background: #161f1c;
    padding: 80px 20px;
    color: #EFF4F2;
}

.gallery__title {
    text-align: center;
    font-size: 2.5rem;
    color: #EFF4F2;
    margin-bottom: 40px;
    letter-spacing: 0.08em;
}

.gallery__stage {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
}

.gallery__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gallery__main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.0);
}

.gallery__main.zoom-active {
    animation: gallery-zoom 5s ease-out forwards;
}

@keyframes gallery-zoom {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.0);
    }
}

.gallery__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
            transparent 45%,
            rgba(22, 31, 28, 0.6) 70%,
            rgba(22, 31, 28, 0.95) 100%);
    box-shadow:
        inset 0 0 40px 10px rgba(22, 31, 28, 0.9),
        inset 0 20px 30px 5px rgba(22, 31, 28, 0.7),
        inset 0 -20px 30px 5px rgba(22, 31, 28, 0.7);
}

.gallery__thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.gallery__thumb {
    width: 100px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.gallery__thumb:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.gallery__thumb.active {
    border-color: #F9128B;
    opacity: 1;
}


/* ============================================================
   MERCH
   ============================================================ */

.merch {
    position: relative;
    background: #1a2520;
    padding: 80px 20px;
    overflow: hidden;
    color: #EFF4F2;
}

.merch__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.merch__title {
    text-align: center;
    font-size: 2.5rem;
    color: #EFF4F2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.merch__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 50px;
}

.merch__card {
    background: #F9128B;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 12px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.merch__card:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.merch__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #231F20;
    text-align: center;
}

.merch__img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
}

.merch__img-wrap img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.merch__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #231F20;
}

.merch__footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.merch__footer-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: #EFF4F2;
}

.merch__footer-main a {
    color: #F9128B;
    text-decoration: none;
}

.merch__footer-main a:hover {
    text-decoration: underline;
}

.merch__footer-sub {
    font-size: 0.8rem;
    opacity: 0.6;
    color: #EFF4F2;
}



/* Kleinere Überschriften auf kleinen Bildschirmen */
@media (max-width: 480px) {

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero__content h1 {
        font-size: 1.6rem;
    }

    .intro__title {
        font-size: 1.6rem;
    }

    .meets__title {
        font-size: 1.6rem;
    }

    .trackrunner__title {
        font-size: 1.6rem;
    }

    .info__title {
        font-size: 1.6rem;
    }

    .info__card h3 {
        font-size: 1.4rem;
    }

    .events__title {
        font-size: 1.6rem;
    }

    .contact__title {
        font-size: 1.5rem;
    }

    .contact__box-title {
        font-size: 1.1rem !important;
    }

    .gallery__title {
        font-size: 1.6rem;
    }

    .merch__title {
        font-size: 1.6rem;
    }

    .sponsors__title {
        font-size: 1.6rem;
    }

    .gallery__thumb {
        width: 56px;
    }

    .merch__img-wrap {
        min-height: 90px;
    }

    .merch__img-wrap img {
        max-height: 90px;
    }

    .meets__text {
        text-align: left;
    }

    .info__card p {
        text-align: left;
    }
}

/* Mittlere mobile Breakpoints */
@media (max-width: 768px) {

    .trackrunner,
    .info,
    .events,
    .gallery,
    .merch {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Tablet & Desktop – grid upgrades */
@media (min-width: 600px) {
    .merch__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {

    .hero__content img {
        width: 60%;
        max-width: 400px;
    }

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

    /* Contact: Titel links, Boxen rechts */
    .contact__inner {
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }

    .contact__heading {
        flex: 0 0 280px;
        align-items: flex-start;
    }

    .contact__title {
        position: sticky;
        top: 40px;
    }

    .contact__boxes {
        flex: 1;
    }

}

@media (min-width: 1024px) {

    .hero__content img {
        width: clamp(350px, 30vw, 600px);
    }

    .intro {
        padding: 0 40px;
    }

    .intro__image img {
        width: 200px;
    }

    .trackrunner__grid {
        flex-direction: row;
        align-items: stretch;
    }

    .trackrunner__image,
    .trackrunner__content {
        flex: 1;
    }

    .trackrunner__image img {
        height: 100%;
    }

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

    .events__grid {
        flex-direction: row;
        align-items: stretch;
    }

    .events__card {
        flex: 1;
    }
}

@media (max-width: 1024px) {
    .logo-carousel__group {
        padding: 0 4vw;
    }
}

@media (max-width: 600px) {
    .logo-carousel__group {
        padding: 0 1vw;
    }
}

.membership {
    background: linear-gradient(to top,
            #F9128B -10%,
            #8A0E52 18%,
            #231F20 60%,
            #231F20 100%);
    padding: 100px 20px;
    color: #EFF4F2;
}

.membership__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.membership__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membership__title {
    font-size: 2.5rem;
    color: #F9128B;
}

.membership__subtitle {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

.membership__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.membership__card {
    background: rgba(239, 244, 242, 0.05);
    border: 1px solid rgba(239, 244, 242, 0.12);
    border-top: 4px solid #F9128B;
    padding: 35px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.membership__card-title {
    color: #F9128B;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.membership__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.membership__item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.membership__item p {
    line-height: 1.7;
    opacity: 0.9;
}

.membership__benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 20px;
}

.membership__benefits li {
    line-height: 1.6;
}

.membership__mail-text {
    opacity: 0.8;
}

.membership__mail {
    display: inline-flex;
    width: fit-content;
    background: #F9128B;
    color: #231F20;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.membership__mail:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.membership__steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.membership__steps ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.membership__steps li {
    line-height: 1.5;
}

@media (min-width: 768px) {

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

    .membership__card--full {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {

    .membership__title {
        font-size: 1.6rem;
    }

    .membership__card-title {
        font-size: 1.2rem;
    }

    .membership__card {
        padding: 25px;
    }
}

/* ============================================================
   IMPRESSUM (DEZENT / FOOTER STYLE – LOIBES DESIGN)
============================================================ */

.impressum {
    background: #231F20;
    color: #EFF4F2;
    padding: 70px 20px;
    font-size: 0.85rem;
}

.impressum__inner {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

/* HEADER (zentriert, aber subtil) */
.impressum__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.impressum__logo {
    width: 70px;
    height: auto;
    opacity: 0.75; /* bewusst zurückgenommen */
}

.impressum__title {
    font-size: 1.4rem;
    color: #F9128B;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* CONTENT */
.impressum__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* jede Sektion bleibt klar getrennt */
.impressum__content section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* kleine, ruhige Headlines */
.impressum__content h3 {
    font-size: 0.95rem;
    color: #F9128B;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.04em;
}

/* Text bewusst klein & unaufdringlich */
.impressum__content p {
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.85;
    margin: 0;
}

/* Links minimal */
.impressum__content a {
    color: #F9128B;
    text-decoration: none;
}

.impressum__content a:hover {
    text-decoration: underline;
}

/* dezente Trennung ohne visuelles Rauschen */
.impressum__divider {
    width: 60px;
    height: 1px;
    background: rgba(239, 244, 242, 0.12);
    margin: 5px auto;
}

.footer__legal {
    text-align: center;
    padding: 30px 0 10px;
    opacity: 0.8;
}

.footer__link {
    color: #F9128B;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__link:hover {
    opacity: 0.6;
    text-decoration: underline;
}