/* Zentrales Kontakt-Overlay */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2200;
}

.contact-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-overlay-panel {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 60px 30px;
    position: relative;
    color: var(--green100);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.contact-overlay-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    color: var(--green75);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}

.contact-avatar {
    width: 130px;
    height: 130px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
}

.contact-name {
    margin-top: 24px;
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -1.6px;
    line-height: 1;
    color: var(--green100);
    margin-bottom: 24px;
}

.contact-intro,
.contact-label,
.contact-note {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.contact-intro strong {
    display: inline-block;
    white-space: nowrap;
}

.contact-intro-second-line {
    display: block;
    margin-top: 4px;
}

.contact-info-list {
    width: min(100%, 320px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
    margin: 0 auto 40px;
}

.contact-info-item {
    width: 100%;
    min-height: 58px;
    background: transparent;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 14px;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.contact-info-item--external {
    margin-top: -6px;
}

.contact-offers-group {
    width: min(100%, 320px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0 auto;
}

.contact-label,
.contact-note {
    width: 100%;
    text-align: center;
}

.contact-label {
    margin-bottom: 0;
}

.contact-offers-group .contact-info-item {
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
}

.contact-note {
    margin-top: 12px;
}

.contact-icon-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ececec;
    color: var(--green75);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .contact-overlay {
        padding: 8px;
    }

    .contact-overlay-panel {
        max-width: 100%;
        border-radius: 18px;
        padding: 28px 24px 30px;
    }

    .contact-name {
        font-size: 40px;
    }

    .contact-intro,
    .contact-label,
    .contact-note {
        font-size: 16px;
    }

    .contact-info-item {
        font-size: 15px;
    }
}
