/* ==========================================================================
   Homepage "Trusted & Verified" outbound citations section
   Sits between Google Reviews and FAQ. Reuses .ms-eyebrow / .ms-heading /
   .ms-subtext for the header (same gold-on-dark style as "Our Services"),
   and matches .reviews-section's flat dark background so this reads as
   one continuous block with the sections either side of it.
   ========================================================================== */

.outbound-links-section {
    background: #0d0d0d;
    padding: var(--section-py) 0;
}

.outbound-links-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.outbound-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.outbound-links-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(232, 168, 58, .18);
    border-radius: 14px;
    padding: 26px 16px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.outbound-links-card:hover,
.outbound-links-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(232, 168, 58, .5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45), 0 0 0 1px rgba(232, 168, 58, .12);
    outline: none;
}

.outbound-links-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, .08);
}

.outbound-links-name {
    color: #fff;
    font-size: var(--fs-base);
    font-weight: 500;
}

@media (max-width: 900px) {
    .outbound-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .outbound-links-section { padding: 48px 0; }
    .outbound-links-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .outbound-links-card { padding: 20px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .outbound-links-card { transition: none !important; }
}
