/* ── Wrapper ─────────────────────────────────────────────── */
.lic200-card {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    font-family: 'Outfit', sans-serif;
    min-height: 320px;
}

/* ── Left column: info ───────────────────────────────────── */
.lic200-info-col {
    flex: 1 1 50%;
    background-color: #19286A;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lic200-info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lic200-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lic200-icon {
    font-size: 22px;
    line-height: 1.4;
    flex-shrink: 0;
}

.lic200-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #DEECFF;
    margin-bottom: 4px;
}

.lic200-value {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
    text-decoration: none;
}

.lic200-phone-link:hover {
    text-decoration: underline;
}

.lic200-gbp-link {
    color: #CF1928;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.lic200-gbp-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ── Right column: map + button ──────────────────────────── */
.lic200-map-col {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    background-color: #0f1a45;
}

.lic200-map {
    flex: 1 1 auto;
    line-height: 0;
    overflow: hidden;
}

.lic200-map iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: block;
    border: 0;
}

.lic200-btn-wrap {
    flex-shrink: 0;
    padding: 16px 20px;
    background-color: rgba(0,0,0,0.2);
}

.lic200-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #CF1928;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
    letter-spacing: 0.02em;
    box-sizing: border-box;
}

.lic200-btn:hover {
    background-color: #a01220;
    transform: translateY(-1px);
}

.lic200-btn:active {
    transform: translateY(0);
}

/* ── Responsive: stack on mobile ─────────────────────────── */
@media (max-width: 767px) {
    .lic200-card {
        flex-direction: column;
    }
    .lic200-info-col,
    .lic200-map-col {
        flex: 1 1 100%;
    }
    .lic200-map iframe {
        min-height: 260px;
    }
}
