.section-contact-work-format .contact-work-format {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.section-contact-work-format .contact-work-format__left,
.section-contact-work-format .contact-work-format__right {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.section-contact-work-format .contact-work-format__left .section-header,
.section-contact-work-format .contact-work-format__right .section-header {
    margin: 0 0 24px;
    text-align: center;
}

.section-contact-work-format .contact-work-format__left .section-header h2,
.section-contact-work-format .contact-work-format__right .section-header h2 {
    margin: 0;
}

.section-contact-work-format .contact-work-format__cards {
    display: grid;
    gap: 28px;
    margin-top: 4px;
    flex: 1 1 auto;
    align-content: start;
}

.section-contact-work-format .contact-work-format__card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-background);
    padding: 20px;
    text-align: left;
    display: block;
}

.section-contact-work-format .contact-work-format__content {
    display: grid;
    gap: 8px;
}

.section-contact-work-format .contact-work-format__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    color: var(--color-foreground);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-contact-work-format .contact-work-format__title-text {
    display: block;
}

.section-contact-work-format .contact-work-format__title-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.section-contact-work-format .contact-work-format__title-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.section-contact-work-format .contact-work-format__title-icon--online {
    width: 22px;
    height: 22px;
}

.section-contact-work-format .contact-work-format__online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(195, 27, 38, 0.34);
    animation: contact-work-format-online-pulse 2.2s ease-out infinite;
}

.section-contact-work-format .contact-work-format__title-icon--availability {
    animation: contact-work-format-phone-ring 1.7s ease-in-out infinite;
    transform-origin: center;
}

.section-contact-work-format .contact-work-format__title-icon--availability svg {
    fill: currentColor;
}

.section-contact-work-format .contact-work-format__title-icon--speed .contact-work-format__speed-arrow {
    transform-box: fill-box;
    transform-origin: center;
    animation: contact-work-format-flow-arrow 1.15s ease-in-out infinite;
}

.section-contact-work-format .contact-work-format__title-icon--speed .contact-work-format__speed-arrow--second {
    animation-delay: 0.2s;
}

.section-contact-work-format .contact-work-format__text {
    margin: 0;
    color: var(--color-muted-foreground);
    font-size: 17px;
    line-height: 1.5;
}

.section-contact-work-format .contact-work-format__note {
    margin: 0;
    margin-top: auto;
    padding-top: 24px;
    text-align: center;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
}

.section-contact-work-format .contact-work-format__map {
    margin: 0;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding: 8px;
    background: var(--color-background);
    flex: 1 1 0;
    display: flex;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.section-contact-work-format .contact-work-format__map iframe {
    width: 100%;
    min-height: 0;
    height: auto;
    flex: 1 1 auto;
    border: 0;
    border-radius: 8px;
    display: block;
    filter: none;
}

.section-contact-work-format .contact-work-format__geo-text {
    margin: 0;
    margin-top: 14px;
    padding-top: 14px;
    display: grid;
    gap: 6px;
    color: var(--color-muted-foreground);
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.section-contact-work-format .contact-work-format__geo-text p {
    margin: 0;
}

.section-contact-work-format .contact-work-format__accent {
    color: var(--color-primary);
    font-weight: 500;
}

@keyframes contact-work-format-online-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(195, 27, 38, 0.32);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(195, 27, 38, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(195, 27, 38, 0);
        transform: scale(1);
    }
}

@keyframes contact-work-format-phone-ring {
    0%,
    58%,
    100% {
        transform: translateX(0) rotate(0deg);
    }
    62% {
        transform: translateX(-1px) rotate(-16deg);
    }
    66% {
        transform: translateX(1px) rotate(16deg);
    }
    70% {
        transform: translateX(-1px) rotate(-13deg);
    }
    74% {
        transform: translateX(1px) rotate(13deg);
    }
    78% {
        transform: translateX(-1px) rotate(-10deg);
    }
    82% {
        transform: translateX(1px) rotate(10deg);
    }
    86% {
        transform: translateX(-1px) rotate(-7deg);
    }
    90% {
        transform: translateX(1px) rotate(7deg);
    }
}

@keyframes contact-work-format-flow-arrow {
    0% {
        opacity: 0.25;
        transform: translateX(-3px);
    }
    50% {
        opacity: 1;
        transform: translateX(1px);
    }
    100% {
        opacity: 0.25;
        transform: translateX(5px);
    }
}

@media (max-width: 991px) {
    .section-contact-work-format .contact-work-format {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-contact-work-format .contact-work-format__title {
        font-size: 23px;
    }

    .section-contact-work-format .contact-work-format__card {
        padding: 18px;
    }

    .section-contact-work-format .contact-work-format__text,
    .section-contact-work-format .contact-work-format__note,
    .section-contact-work-format .contact-work-format__geo-text {
        font-size: 16px;
    }

    .section-contact-work-format .contact-work-format__map {
        display: block;
        flex: none;
        width: calc(100% + 64px);
        max-width: none;
        min-height: 320px;
        margin-left: -32px;
        margin-right: -32px;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .section-contact-work-format .contact-work-format__map iframe {
        width: 100%;
        height: 320px;
        min-height: 320px;
        border-radius: 0;
    }
}
