/*
Theme Name: FFW Oberau
Author: Claus-Stephan Zink
Version: 1.5
*/

/* =========================================================
   FF OBERAU – BASIS / VARIABLEN
========================================================= */

:root {
    --ff-blue: #051528;
    --ff-blue-dark: #08111f;
    --ff-blue-light: #0b2238;

    --ff-red: #e31b23;
    --ff-red-dark: #a80000;
    --ff-red-alt: #c00000;

    --ff-yellow: #f4c400;

    --ff-white: #ffffff;
    --ff-light: #f7f7f7;
    --ff-grey: #d3d3d3;
    --ff-text: #222222;
    --ff-text-light: #555555;
    --ff-text-muted: #666666;

    --ff-container: 1400px;
}

/* =========================================================
   RESET
========================================================= */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--ff-white);
    color: var(--ff-text);
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 95%;
    max-width: var(--ff-container);
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    background: var(--ff-blue);
    z-index: 99999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

/* =========================================================
   LOGO / BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.brand img {
    height: 80px;
    width: auto;
}

.brand-title {
    color: var(--ff-white);
    font-size: 2rem;
    font-weight: bold;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.brand-link:hover {
    opacity: 0.95;
}

.brand-link .brand-title,
.brand-link:hover .brand-title {
    color: var(--ff-white);
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99999;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 0 6px;

    color: var(--ff-white);
    text-decoration: none;
    font-weight: 500;
}

.main-menu > li > a:hover {
    color: var(--ff-yellow);
}

/* Dropdown-Pfeil */

.menu-item-has-children > a::after {
    content: " ▼";
    margin-left: 5px;
    font-size: 9px;
}

/* =========================================================
   DROPDOWN
========================================================= */

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 260px;

    background: var(--ff-white);
    border: 1px solid #dddddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    z-index: 9999;
}

.sub-menu li {
    width: 100%;
}

.sub-menu a {
    display: block;
    padding: 12px 18px;

    color: var(--ff-text);
    text-decoration: none;
}

.sub-menu a:hover {
    background: #f5f5f5;
    color: var(--ff-red);
}

.main-menu li:hover > .sub-menu {
    display: block;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;
}

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

.hero {
    position: relative;
    min-height: 550px;

    display: flex;
    align-items: center;

    background-image: url("assets/images/hero.jpg");
    background-size: cover;
    background-position: center;

    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.30)
        );
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text {
    max-width: 650px;
    color: var(--ff-white);
}

.hero-badge {
    display: inline-block;

    margin-bottom: 20px;
    padding: 10px 16px;

    background: var(--ff-red);

    font-size: 14px;
    font-weight: bold;
}

.hero h1 {
    margin-bottom: 20px;

    font-size: 72px;
    line-height: 1;
}

.hero p {
    margin-bottom: 30px;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 22px;

    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: var(--ff-red);
    color: var(--ff-white);
}

.btn-secondary {
    border: 1px solid var(--ff-white);
    color: var(--ff-white);
}

/* =========================================================
   NOTRUF BOX
========================================================= */

.emergency-box {
    padding: 20px 30px;

    background: var(--ff-red);
    color: var(--ff-white);

    border-radius: 8px;
    text-align: center;
}

.emergency-label {
    font-size: 18px;
    font-weight: bold;
}

.emergency-number {
    font-size: 48px;
    font-weight: bold;
}

/* =========================================================
   IMAGE STRIP
========================================================= */

.image-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;

    padding: 8px;

    background: var(--ff-blue-dark);
}

.image-tile {
    overflow: hidden;
}

.image-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: none;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 80px 0;
    background: var(--ff-light);
}

.about-section-mobile {
    display: none;
    padding: 80px 0;
    background: var(--ff-light);
}

.about-text {
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* 4 Karten – Desktop 2 × 2 */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.about-card {
    padding: 30px;

    background: var(--ff-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    margin-bottom: 10px;
    color: var(--ff-red);
}

.about-card p {
    line-height: 1.5;
}

/* =========================================================
   NEWS SECTION
========================================================= */

.news-section {
    padding: 80px 0;
    background: var(--ff-white);
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 10px;

    color: var(--ff-blue);
    font-size: 42px;
}

.section-header p {
    color: var(--ff-text-muted);
    font-size: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    overflow: hidden;

    background: var(--ff-white);
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.news-image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    margin-bottom: 10px;

    color: #888888;
    font-size: 14px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.news-content h3 a {
    color: var(--ff-blue);
    text-decoration: none;
}

.news-content h3 a:hover {
    color: var(--ff-red);
}

.news-excerpt {
    line-height: 1.6;
}

/* =========================================================
   STATISTIKEN
========================================================= */

.stats-section {
    padding: 80px 0;

    background: var(--ff-blue-dark);
    color: var(--ff-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;

    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    margin-bottom: 10px;

    color: var(--ff-red);
    font-size: 64px;
    font-weight: 700;
}

.stat-label {
    color: var(--ff-white);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================
   GOOGLE KALENDER
========================================================= */

.calendar-section {
    padding: 80px 0;
    background: var(--ff-grey);
}

.calendar-wrapper {
    padding: 20px;

    background: var(--ff-white);
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.calendar-wrapper iframe {
    width: 100%;
    min-height: 700px;
    border: 0;
}

/* =========================================================
   MITMACHEN / JOIN SECTION
========================================================= */

.join-section {
    position: relative;

    padding: 70px 0;

    background: var(--ff-blue);
    overflow: hidden;
}

.join-section::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 6px;

    background: var(--ff-red-alt);
}

.join-section::after {
    content: "";

    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;
    background: rgba(192, 0, 0, 0.12);
}

.join-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 35px;

    max-width: 950px;
    margin: 0 auto;
}

.join-icon {
    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: var(--ff-white);
    font-size: 38px;
}

.join-text {
    flex: 1;
}

.join-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--ff-red-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.join-text h2 {
    margin: 0 0 1rem;

    color: var(--ff-white);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.join-text p {
    margin: 0 0 0.8rem;

    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.join-text .join-date {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;

    color: var(--ff-white);
}

.join-date strong {
    color: var(--ff-white);
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 1rem;
    padding: 13px 22px;

    background: var(--ff-red-alt);
    color: var(--ff-white) !important;

    border-radius: 4px;

    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.join-button span {
    font-size: 1.2rem;
    line-height: 1;
}

.join-button:hover {
    background: var(--ff-red-dark);
    color: var(--ff-white) !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* =========================================================
   UNSERE ABTEILUNGEN
========================================================= */

.departments-section {
    padding: 80px 0;
    background: var(--ff-white);
}

.departments-header {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--ff-red-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.departments-header h2 {
    margin: 0 0 1rem;

    color: var(--ff-text);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.departments-header p {
    margin: 0;

    color: var(--ff-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.department-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--ff-white);
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    text-decoration: none;
}

.department-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;
    background: var(--ff-blue);
}

.department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.department-card:hover .department-image img {
    transform: scale(1.05);
}

.department-content {
    position: relative;
    padding: 25px;
}

.department-number {
    display: block;
    margin-bottom: 8px;

    color: var(--ff-red-alt);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.department-content h3 {
    margin: 0 0 10px;

    color: var(--ff-text);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
}

.department-content p {
    margin: 0 0 20px;

    color: var(--ff-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.department-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--ff-red-alt);
    font-size: 0.9rem;
    font-weight: 700;
}

.department-link span {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.department-card:hover .department-link span {
    transform: translateX(4px);
}

/* =========================================================
   KONTAKT CTA
========================================================= */

.contact-cta {
    padding: 70px 0;

    background: var(--ff-light);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    max-width: 1100px;
    margin: 0 auto;
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--ff-red-alt);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-cta h2 {
    margin: 0 0 1rem;

    color: var(--ff-text);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-cta-text > p {
    max-width: 650px;
    margin: 0 0 1.2rem;

    color: var(--ff-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-cta-address {
    margin-bottom: 1.5rem;

    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 20px;

    border-radius: 4px;

    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-cta-button-primary {
    background: var(--ff-red-alt);
    color: var(--ff-white) !important;
}

.contact-cta-button-primary:hover {
    background: var(--ff-red-dark);
}

.contact-cta-button-secondary {
    background: var(--ff-blue);
    color: var(--ff-white) !important;
}

.contact-cta-button-secondary:hover {
    background: var(--ff-blue-light);
}

.contact-cta-emergency {
    flex: 0 0 190px;

    width: 190px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--ff-red-alt);
    border-radius: 50%;

    color: var(--ff-white);
    text-align: center;
}

.contact-cta-emergency-number {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.contact-cta-emergency-text {
    display: flex;
    flex-direction: column;

    margin-top: 8px;

    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-cta-emergency-text strong {
    font-weight: 700;
}

.contact-cta-emergency-text span {
    opacity: 0.9;
}

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

.footer-hero {
    position: relative;
    min-height: 300px;

    display: flex;
    align-items: center;

    background-image: url("assets/images/panorama.jpg");
    background-size: cover;
    background-position: center;
}

.footer-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.footer-hero-content {
    position: relative;
    z-index: 5;

    color: var(--ff-white);
    text-align: center;
}

.footer-hero-content h2 {
    margin-bottom: 15px;
    font-size: 56px;
}

.footer-hero-content p {
    font-size: 22px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 60px 0;

    background: var(--ff-blue);
    color: var(--ff-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.site-footer h3 {
    margin-bottom: 15px;
}

.site-footer ul {
    list-style: none;
}

.site-footer a {
    color: var(--ff-white);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ff-yellow);
}

/* =========================================================
   TEST / PLACEHOLDER
========================================================= */

.placeholder {
    padding: 80px;
}

/* =========================================================
   RESPONSIVE – TABLET
========================================================= */

@media (max-width: 1000px) {

    .header-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .news-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-hero-content h2 {
        font-size: 42px;
    }

    .image-strip {
        grid-template-columns: 1fr;
        gap: 1px;
    }

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

/* =========================================================
   RESPONSIVE – MOBILE
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------
       MOBILE NAVIGATION
    ----------------------------------------- */

    .menu-toggle {
        display: block;

        background: none;
        border: none;

        color: var(--ff-white);
        font-size: 32px;

        cursor: pointer;
    }

    .main-navigation {
        display: none;

        position: absolute;
        top: 90px;
        left: 0;

        width: 100%;

        padding: 20px;

        background: var(--ff-blue);
    }

    .main-navigation.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-menu > li {
        width: 100%;
    }

    .main-menu > li > a {
        width: 100%;
        height: auto;
        padding: 15px 0;
    }

    /* -----------------------------------------
       NEWS
    ----------------------------------------- */

    .news-section {
        display: none;
    }

    /* -----------------------------------------
       STATISTIKEN
    ----------------------------------------- */

    .stat-label {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .stat-item {
        width: 100%;
        max-width: 100%;
    }

    .stat-number {
        font-size: 48px;
    }

    /* -----------------------------------------
       ABOUT
    ----------------------------------------- */

    .about-section {
        display: none;
    }

    .about-section-mobile {
        display: block;
    }

    .about-section-mobile .about-grid {
        grid-template-columns: 1fr;
    }

    /* -----------------------------------------
       MITMACHEN
    ----------------------------------------- */

    .join-section {
        padding: 55px 20px;
    }

    .join-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .join-icon {
        flex-basis: 70px;
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .join-text h2 {
        font-size: 1.75rem;
    }

    .join-text p {
        font-size: 0.98rem;
    }

    .join-button {
        width: 100%;
        justify-content: center;
    }

    /* -----------------------------------------
       ABTEILUNGEN
    ----------------------------------------- */

    .departments-section {
        padding: 55px 20px;
    }

    .departments-header {
        margin-bottom: 30px;
    }

    .departments-header h2 {
        font-size: 1.75rem;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .department-content {
        padding: 22px;
    }

    /* =========================================================
   KONTAKT & STANDORTE
========================================================= */

.contact-cta {
    padding: 70px 0;
    background: var(--ff-light);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    max-width: 1150px;
    margin: 0 auto;
}

.contact-cta-text {
    flex: 1;
}


/* =========================================================
   KICKER / ÜBERSCHRIFT
========================================================= */

.contact-cta-kicker {
    display: block;
    margin-bottom: 8px;

    color: var(--ff-red-alt);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-cta h2 {
    margin: 0 0 1rem;

    color: var(--ff-text);

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-cta-text > p {
    max-width: 700px;
    margin: 0 0 1.5rem;

    color: var(--ff-text-light);

    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   STANDORTE
========================================================= */

.contact-cta-locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    margin-bottom: 20px;
}

.contact-cta-location {
    padding: 22px;

    background: var(--ff-white);

    border-left: 4px solid var(--ff-red-alt);
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-cta-location h3 {
    margin: 0 0 10px;

    color: var(--ff-text);

    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-cta-location p {
    margin: 0 0 15px;

    color: var(--ff-text-light);

    font-size: 0.95rem;
    line-height: 1.6;
}


/* =========================================================
   BUTTONS
========================================================= */

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 17px;

    border-radius: 4px;

    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-cta-button-secondary {
    background: var(--ff-blue);
    color: var(--ff-white) !important;
}

.contact-cta-button-secondary:hover {
    background: var(--ff-blue-light);
}

.contact-cta-button-primary {
    background: var(--ff-red-alt);
    color: var(--ff-white) !important;
}

.contact-cta-button-primary:hover {
    background: var(--ff-red-dark);
}

.contact-cta-contact-button {
    margin-top: 5px;
}


/* =========================================================
   NOTRUF 112
========================================================= */

.contact-cta-emergency {
    flex: 0 0 190px;

    width: 190px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--ff-red-alt);

    border-radius: 50%;

    color: var(--ff-white);
    text-align: center;
}

.contact-cta-emergency-number {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.contact-cta-emergency-text {
    display: flex;
    flex-direction: column;

    margin-top: 8px;

    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-cta-emergency-text strong {
    font-weight: 700;
}

.contact-cta-emergency-text span {
    opacity: 0.9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-cta {
        padding: 55px 20px;
    }

    .contact-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
    }

    .contact-cta h2 {
        font-size: 1.75rem;
    }

    .contact-cta-locations {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-cta-location {
        padding: 20px;
    }

    .contact-cta-button {
        width: auto;
    }

    .contact-cta-contact-button .contact-cta-button {
        width: 100%;
    }

    .contact-cta-emergency {
        align-self: center;

        flex-basis: auto;

        width: 150px;
        height: 150px;
    }

    .contact-cta-emergency-number {
        font-size: 3rem;
    }

}

}
