/* Contact info — centered "Kontakta oss" details (heading, phone number,
   body copy). Block version of the hardcoded footer contact section. Legacy
   dist/styles/index.css styles bare h2/p with !important, so heading/body
   declarations carry !important to win — same approach as .circla-heading. */

.contact-info-block {
    padding: 64px 0;
    text-align: center;
}

.contact-info-block__inner {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-info-block__heading {
    margin: 0 0 15px !important;
    font-family: "Neue Augenblick Bold", "Neue Augenblick", sans-serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #233129 !important;
    text-transform: none !important;
}

/* Phone row (Figma 2836:781): green handset icon + number, with a smaller
   note after it. Icon + number are one tel: link; the note sits outside. */
.contact-info-block__number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 15px;
    color: #233129;
}

.contact-info-block__phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #233129;
    text-decoration: none;
}

.contact-info-block__phone-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #688D78;
}

.contact-info-block__phone-number {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 39px;
    line-height: 1.2;
    color: #233129;
}

.contact-info-block__phone-note {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: #233129;
}

.contact-info-block__body {
    max-width: 720px;
    margin: 0 auto;
}

.contact-info-block__body p {
    margin: 0 0 12px;
    font-family: "Open Sans";
    font-size: 16px !important;
    line-height: 24px !important;
    color: #233129;
}

.contact-info-block__body p:last-child {
    margin-bottom: 0;
}

.contact-info-block__body a {
    color: #2d3536;
}

@media (max-width: 768px) {
    .contact-info-block {
        padding: 40px 0;
    }
    .contact-info-block__inner {
        padding: 0 15px;
    }
    .contact-info-block__heading {
        font-size: 28px !important;
    }
    .contact-info-block__phone {
        gap: 12px;
    }
    .contact-info-block__phone-icon {
        width: 28px;
        height: 28px;
    }
    .contact-info-block__phone-number {
        font-size: 28px;
    }
    .contact-info-block__phone-note {
        font-size: 18px;
    }
}
