/* ============================================
   Social handles — Views/Shared/_SocialLinks.cshtml
   Used on the landing page and the signed-out page.
   ============================================ */

.cds--instagram { --cds-brand: #e1306c; --cds-bg: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); }
.cds--facebook  { --cds-brand: #1877f2; --cds-bg: #1877f2; }
.cds--tiktok    { --cds-brand: #111111; --cds-bg: linear-gradient(135deg, #25f4ee 0%, #111 35%, #111 65%, #fe2c55 100%); }
.cds--youtube   { --cds-brand: #ff0000; --cds-bg: #ff0000; }
.cds--x         { --cds-brand: #0f1419; --cds-bg: #0f1419; }

/* --- Cards --- */
.cds-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
}

.cds-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cds-card:hover {
    transform: translateY(-2px);
    border-color: var(--cds-brand);
    box-shadow: 0 12px 24px -12px var(--cds-brand);
    color: #111827;
}

.cds-card:focus-visible { outline: 3px solid var(--cds-brand); outline-offset: 2px; }

.cds-card__logo {
    flex: 0 0 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cds-bg);
    color: #fff;
    font-size: 1.2rem;
}

.cds-card__text { min-width: 0; line-height: 1.25; }
.cds-card__text strong { display: block; font-size: .92rem; }

.cds-card__text small {
    display: block;
    font-size: .76rem;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cds-card__cta {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 50px;
    background: #f3f4f6;
    font-size: .74rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.cds-card:hover .cds-card__cta { background: var(--cds-brand); color: #fff; }

/* --- Round icons --- */
.cds-icons { display: flex; flex-wrap: wrap; gap: 10px; }

.cds-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, .16);
    color: inherit;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.cds-icon:hover { background: var(--cds-bg); color: #fff; transform: translateY(-2px); }
.cds-icon:focus-visible { outline: 3px solid var(--cds-brand); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    .cds-card, .cds-icon { transition: none; }
    .cds-card:hover, .cds-icon:hover { transform: none; }
}
