/* ══════════════════════════════════════════
   CONTACT CARDS — footer content additions
   (card shell itself is styled by newengine.css already)
══════════════════════════════════════════ */
.newengine-bento-card-visual--contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.newengine-bento-card .newengine-contact-detail {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--text, #111);
    margin: 0;
}
.newengine-contact-detail--link {
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.newengine-contact-detail--link:hover {
    opacity: 0.75;
}
.newengine-contact-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text, #111);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.newengine-contact-action:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 6px 14px -6px rgba(0, 0, 0, 0.2);
}
.newengine-contact-action svg {
    flex-shrink: 0;
}

/* ---------- Responsive: stack detail above action on narrow cards ---------- */
@media (max-width: 480px) {
    .newengine-bento-card-visual--contact {
        flex-direction: column;
        align-items: flex-start;
    }
    .newengine-contact-action {
        width: 100%;
        justify-content: center;
    }
}