/* MSB HR Contact */
.msb-hr-contact-wrapper {
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.msb-hr-contact__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 24px;
    line-height: 1.4;
}

.msb-hr-contact {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.msb-hr-contact__content {
    display: flex;
    align-items: center;
    border-radius: 24px;
    padding: 24px;
}

.msb-hr-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msb-hr-contact__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 0;
    margin-bottom: 0;
}

.msb-hr-contact__item:first-child {
    padding-top: 0;
}

.msb-hr-contact__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.msb-hr-contact__label {
    font-size: 16px;
    font-weight: 600;
    color: #091E42;
    line-height: 1.5;
}

.msb-hr-contact__value {
    font-size: 16px;
    font-weight: 400;
    color: #505F79;
    line-height: 1.5;
}

.msb-hr-contact__value--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.msb-hr-contact__value--link:hover {
    color: #E55F00;
    text-decoration: underline;
}

.msb-hr-contact__image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius, 16px);
}

.msb-hr-contact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .msb-hr-contact {
        grid-template-columns: 1fr 1fr;
    }

    .msb-hr-contact__content {
        padding: 32px;
    }

    .msb-hr-contact__item {
        grid-template-columns: 150px 1fr;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .msb-hr-contact-wrapper {
        padding: 0 16px;
    }

    .msb-hr-contact__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .msb-hr-contact {
        grid-template-columns: 1fr;
        gap: 24px !important;
    }

    .msb-hr-contact__content {
        padding: 24px;
    }

    .msb-hr-contact__item {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .msb-hr-contact__label,
    .msb-hr-contact__value {
        font-size: 14px;
    }

    .msb-hr-contact__image {
        height: 200px;
    }
}
