@charset "utf-8";

.title_with_logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: -5px;
    padding: 2px 0;
}

.title_with_logo span {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    letter-spacing: -0.5px;
}

.partners_map {
    object-fit: contain;
    background-size: contain;
    max-width: 80px;
    max-height: 65px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    padding: 5px;
}

.partners_map:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.title_with_logo a {
    text-decoration: none;
    display: inline-block;
}

.title_with_logo a:hover .partners_map {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.address dt {
    vertical-align: top;
    padding-top: 2px;
}
