/* social-links.css - INIT-160 social media module: dedicated layout container.
   Layout variant is a configurable module setting (site_settings.social_links_layout),
   validated by SocialLinkService::layoutVariants(). Add new variants here + in the service. */
.social-links{display:flex;align-items:center;gap:.65rem;flex-wrap:wrap;}
.social-links__link{font-size:1.25rem;color:var(--text-muted,#555);text-decoration:none;display:inline-flex;align-items:center;gap:.15rem;line-height:1;}
.social-links__link:hover{opacity:.8;}
.social-links__link img{display:block;width:20px;height:20px;}
.social-links__verified{font-size:.8rem;color:#10B981;}

/* ---- configurable layout variants ---- */
/* DEFAULT: bottom of card, centered, distributed evenly regardless of icon count */
.social-links--bottom-center{width:100%;justify-content:space-evenly;margin-top:1rem;padding-top:.85rem;border-top:1px solid var(--border-color,#e5e7eb);}
/* top of card, centered evenly */
.social-links--top{width:100%;justify-content:space-evenly;margin-bottom:1rem;padding-bottom:.85rem;border-bottom:1px solid var(--border-color,#e5e7eb);}
/* left-aligned cluster (bottom of card) */
.social-links--left{width:100%;justify-content:flex-start;margin-top:1rem;padding-top:.85rem;border-top:1px solid var(--border-color,#e5e7eb);}
/* right-aligned cluster (bottom of card) */
.social-links--right{width:100%;justify-content:flex-end;margin-top:1rem;padding-top:.85rem;border-top:1px solid var(--border-color,#e5e7eb);}
