:root{
  --bg:#070a12;
  --panel:#0d1424;
  --text:#eaf0ff;
  --muted:#a9b6da;
  --border:rgba(255,255,255,.12);

  --navy:#0b1f3b;
  --blue:#2f7cf6;
  --teal:#22a6b3;
  --good:#3ddc97;
  --warn:#f6c343;
  --bad:#ff6b6b;

  --shadow:0 12px 30px rgba(0,0,0,.38);
  --radius:16px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* === Globe Life Blue Glow Utilities === */
:root{
  --gl-blue: #0070c9; /* clean luminous blue */
}

.gl-blue-glow{
  position: relative;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
}

.gl-blue-glow:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,112,201,.28), 0 0 22px rgba(0,112,201,.45);
  filter: brightness(1.06);
}

/* Social icons on Agency Contact page */
.social-links {
  display: flex;          /* This aligns items horizontally */
  flex-direction: row;    /* Explicitly sets horizontal flow */
  gap: 20px;              /* Adds space between the links */
  align-items: center;    /* Keeps everything centered vertically */
  flex-wrap: wrap;        /* Allows links to move to the next line on mobile */
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;  /* Removes the underline */
  gap: 8px;               /* Space between the icon and the text */
}

.social-link img {
  width: 24px;            /* Adjust icon size as needed */
  height: 24px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease;
}

.social-link img{
  width:18px;
  height:18px;
  display:block;
}

.social-link:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 28px rgba(0,112,201,.22), 0 0 18px rgba(0,112,201,.45);
}

/* Bug modal (lightweight, no dependencies) */
.bug-modal{ position:fixed; inset:0; z-index:9999; display:none; background: rgba(0,0,0,.6); }
.bug-modal.open{ display:flex; align-items:center; justify-content:center; }
.bug-card{ width:min(720px, calc(100vw - 36px)); max-height: calc(100vh - 36px); overflow:hidden; border-radius:22px; background:#ffffff; color:#111; border: 1px solid rgba(17,17,17,.12); box-shadow: 0 28px 70px rgba(0,0,0,.42); }
.bug-head{ display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid rgba(17,17,17,.1); position:sticky; top:0; background:#fff; }
.bug-title{ font-size:18px; font-weight:700; }
.bug-body{ padding:14px 16px; overflow:auto; max-height: calc(100vh - 140px); }
.bug-row{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.bug-row label{ font-size:13px; font-weight:600; }
.bug-in, .bug-ta{ width:100%; border-radius:14px; border:1px solid #d1d5db; padding:10px 12px; font-size:16px; }
.bug-ta{ min-height:110px; resize:vertical; }
.bug-actions{ display:flex; gap:10px; justify-content:flex-end; padding: 0 16px 16px; }

*{box-sizing:border-box}

body{
  padding-top: var(--header-max, 180px);

  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 5%, rgba(47,124,246,.22), transparent 55%),
    radial-gradient(900px 560px at 85% 20%, rgba(34,166,179,.18), transparent 60%),
    linear-gradient(180deg, #050710, var(--bg));
}

a{color:inherit}

.wrap{max-width:1400px;margin:0 auto;padding:16px}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(5,7,16,.78);
  border-bottom: 1px solid var(--border);
}

.topbar{display:flex;gap:14px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.brand{display:flex;gap:12px;align-items:center}
.logo{
  height:42px;width:42px;object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  padding:6px;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.35));
}
.titles h1{margin:0;font-size:18px;letter-spacing:.3px}
.titles p{margin:4px 0 0;font-size:12px;color:var(--muted)}

.toolstrip{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end}

/* Toolstrip sizing: make header buttons consistent */
.toolstrip .btn{
  height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}
.toolstrip .btn:disabled{ opacity: .55; cursor: not-allowed; transform:none; }

.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:9px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:800;
  transition: transform .06s ease, background .15s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.btn:hover{background: rgba(255,255,255,.09)}
.btn:active{transform: translateY(1px)}
.btn.good{border-color: rgba(61,220,151,.45)}
.btn.primary{border-color: rgba(47,124,246,.55)}

.small{
  font-size:12px;
  color:var(--muted);
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background: rgba(0,0,0,.18);
}

.pill{
  font-family:var(--mono);
  font-size:12px;
  color:var(--muted);
  padding:7px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(0,0,0,.20);
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.dot{width:8px;height:8px;border-radius:99px;background:rgba(255,255,255,.25)}
.dot.good{background:rgba(61,220,151,.85)}
.dot.warn{background:rgba(246,195,67,.90)}
.dot.bad{background:rgba(255,107,107,.90)}

.panel{
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  overflow:hidden;
}

:is(button, a, input, select, textarea):focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(47,124,246,.18);
}

footer{
  margin-top: 22px;
  padding: 22px 16px 30px;
  text-align:center;
  color: rgba(233,240,255,.78);
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.08);
}
footer p{margin:6px 0}
footer a{color: rgba(233,240,255,.88); text-decoration:none}
footer a:hover{text-decoration:underline}


/* ===== PG26.04 / PG27.00: Nav state + session + polish ===== */
:root{
  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 180ms;
  --card: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  --card2: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  --ring: 0 0 0 3px rgba(47,124,246,.35);
}

/* Buttons: consistent sizing + motion */
.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn:focus-visible{ outline:none; box-shadow: var(--ring); }

.btn.good{ background: rgba(61,220,151,.14); border-color: rgba(61,220,151,.35); }
.btn.good:hover{ background: rgba(61,220,151,.18); }
.btn.ghost{ background: transparent; }
.btn.warn{ background: rgba(246,195,67,.14); border-color: rgba(246,195,67,.35); }
.btn.bad{ background: rgba(255,107,107,.12); border-color: rgba(255,107,107,.35); }

/* Card depth system */
.panel, .card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.panel--soft, .card.soft{ background: var(--card2); box-shadow: 0 10px 26px rgba(0,0,0,.34); }

/* Spacing helpers */
.stack > * + *{ margin-top: 12px; }
.gap-8{ gap: 8px; } .gap-10{ gap:10px; } .gap-12{ gap:12px; } .gap-16{ gap:16px; }

/* Nav active highlight */
.navlink{ position: relative; }
.navlink.active{
  border-color: rgba(47,124,246,.55) !important;
  background: rgba(47,124,246,.14) !important;
}
.navlink.active::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(47,124,246,.9);
  box-shadow: 0 10px 18px rgba(47,124,246,.22);
}

/* Session indicator + auth badge */
.session{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.auth-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  white-space: nowrap;
}
.auth-badge .dot{
  width:10px; height:10px; border-radius:999px;
  display:inline-block;
  background: rgba(246,195,67,.95);
  box-shadow: 0 0 0 3px rgba(246,195,67,.18);
}
.auth-badge.authed{
  border-color: rgba(61,220,151,.38);
  background: rgba(61,220,151,.12);
}
.auth-badge.authed .dot{
  background: rgba(61,220,151,.95);
  box-shadow: 0 0 0 3px rgba(61,220,151,.20);
}
.session-indicator{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Lead Vault standout green background */
body.lv-standout{
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(61,220,151,.30), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 80% 15%, rgba(34,166,179,.20), rgba(0,0,0,0) 55%),
    radial-gradient(1200px 700px at 50% 90%, rgba(47,124,246,.12), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(8,18,12,1), rgba(7,10,18,1));
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
  .navlink.active::after{ box-shadow:none; }
}


/* ===== PG29.000B: Triple‑Click Menu + Bug Report ===== */

.pg-ctx-menu{
  position: fixed;
  z-index: 9999;
  width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,30,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
  overflow: hidden;
  transform: translateY(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
}
.pg-ctx-menu.open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pg-ctx-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.pg-ctx-title{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .15px;
  color: rgba(233,240,255,.92);
}
.pg-ctx-x{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(233,240,255,.92);
  cursor:pointer;
}
.pg-ctx-body{ padding: 8px; display:flex; flex-direction:column; gap:8px; }
.pg-ctx-item{
  display:flex;
  gap:10px;
  align-items:center;
  width: 100%;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,240,255,.92);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
  text-align:left;
}
.pg-ctx-item:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.pg-ctx-ico{ width: 18px; text-align:center; opacity:.95; }
.pg-ctx-label{ font-size: 12.5px; line-height: 1.15rem; }

.pg-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
}
.pg-modal.open{
  opacity: 1;
  pointer-events: auto;
}
.pg-modal-card{
  width: min(720px, 96vw);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,30,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
  padding: 12px;
}
.pg-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.pg-modal-title{
  font-weight: 800;
  letter-spacing: .15px;
}
.pg-modal-sub{
  margin: 8px 2px 10px;
  font-size: 12px;
  color: rgba(233,240,255,.74);
  line-height: 1.35rem;
}

.pg-modal-row{ margin: 8px 2px 10px; }
.pg-modal-label{ display:block; font-size: 12px; color: rgba(233,240,255,.74); margin: 0 0 6px; }
.pg-modal-in{
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(233,240,255,.92);
  outline: none;
}
.pg-modal-in::placeholder{ color: rgba(169,182,218,.7); }

.pg-modal-ta{
  width: 100%;
  min-height: 280px;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(233,240,255,.92);
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.3rem;
  outline: none;
}
.pg-modal-actions{
  margin-top: 10px;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.pg-rf-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 8px 2px 2px;
  max-height: 52vh;
  overflow:auto;
}
@media (max-width: 760px){ .pg-rf-grid{ grid-template-columns: 1fr; } }
.pg-rf-item{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  color: rgba(233,240,255,.88);
}
.pg-rf-item input{ transform: scale(1.05); }

.ver{display:inline-block;margin-left:10px;font-size:12px;color:rgba(233,240,255,.70);font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}


/* --- YA010.02: Consult modal viewport fit (prevents oversized "Inquire About" on mobile) --- */
#consult-modal .pg-modal-card{
  max-height: calc(100vh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#consult-modal .pg-modal-head{
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(10,16,30,.98);
  padding-top: 8px;
  padding-bottom: 8px;
}
/* Avoid nested scroll regions inside the form; let the modal card scroll instead */
#consult-modal .pg-rf-grid{
  max-height: none;
  overflow: visible;
}

/* ya15.000a hotfix: ensure the consult form always fits viewport (even if markup changes)
   - allow the header to stay sticky
   - keep the form scrollable within the modal card on smaller screens
*/
#consult-modal .pg-modal-card{
  display: flex;
  flex-direction: column;
}
#consult-modal #consult-form{
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 2px;
}
@media (max-width: 760px){
  #consult-modal{ align-items: flex-start; }
  #consult-modal .pg-modal-card{ width: min(720px, 100vw); }
}


/* --- YA12.001: Smart shrinking sticky header (momentum + shadow on scroll) --- */
.pg-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    transform .24s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

/* Shadow only while scrolling (and a lighter one when just "scrolled") */
.pg-header.is-scrolled{
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.pg-header.is-scrolling{
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Hide header on downward scroll, reveal on upward scroll */
.pg-header.is-hidden{
  transform: translate3d(0, calc(-100% - 8px), 0);
}

/* Smooth height reduction via padding + logo scaling */
.pg-header .ln-header{ transition: padding .22s ease; }
.pg-header .ln-main{ transition: padding .22s ease; }
.pg-header .ln-logo{ transition: height .22s ease, width .22s ease; }

/* Utility row collapses in compact mode */
.pg-header .ln-util{
  transition: max-height .22s ease, opacity .18s ease, padding .22s ease, margin .22s ease, border-color .22s ease;
  max-height: 60px;
  opacity: 1;
}

/* Default (expanded) — keep your theme sizes */
.pg-header .ln-logo{ height: 125px; }

/* Compact state */
.pg-header.is-compact .ln-header{
  padding: 6px 0 6px;
}
.pg-header.is-compact .ln-main{
  padding-top: 6px;
}
.pg-header.is-compact .ln-logo{
  height: 56px; /* shrink target */
  max-width: 320px;
}
.pg-header.is-compact .ln-util{
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  border-color: transparent;
}

/* Mobile: slightly smaller compact logo */
@media (max-width: 760px){
  .pg-header.is-compact .ln-logo{ height: 48px; }
}


/* ===== Footer Glow + Seamless Blend (YA12.003) ===== */
/* Removes boxed footer feel and adds a soft upward glow that strengthens on hover. */

footer{
  box-shadow:none !important;
  border-top:none !important;
  background:transparent !important;
  position:relative;
  overflow:hidden;
}

/* soft upward glow */
footer::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-140px;
  transform:translateX(-50%);
  width:160%;
  height:320px;
  background:radial-gradient(ellipse at bottom,
    rgba(255,255,255,.14) 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.03) 65%,
    transparent 82%);
  pointer-events:none;
  z-index:0;
  transition:height .55s ease, background .55s ease, filter .55s ease;
  filter:blur(0px);
}

footer:hover::before{
  height:420px;
  background:radial-gradient(ellipse at bottom,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.12) 40%,
    rgba(255,255,255,.05) 72%,
    transparent 88%);
  filter:blur(0.2px);
}

/* keep footer content above glow */
footer > *{ position:relative; z-index:1; }



/* ===== ya15.000a — Careers CTA banner ===== */
.pg-cta-banner{
  position: relative;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.15) 100%),
    radial-gradient(1200px 220px at 50% 120%, rgba(47,124,246,.18) 0%, rgba(34,166,179,.10) 45%, rgba(0,0,0,0) 70%);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.pg-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 12px;
}
.pg-cta-copy{
  color: rgba(17,17,17,.86);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .2px;
}
.pg-cta-copy strong{ color: rgba(17,17,17,.95); }
.pg-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,17,17,.88);
  color: #ffffff;
  text-decoration:none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.pg-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  background: rgba(17,17,17,.95);
}
@media (max-width: 560px){
  .pg-cta-inner{ flex-direction: column; align-items: stretch; }
  .pg-cta-btn{ width: 100%; }
  .pg-cta-copy{ text-align: center; }
}

/* ===== Mobile Flush Green Gradient (override) ===== */
html, body{
  margin:0;
  padding:0;
  min-height:100%;
}
body{
  background: linear-gradient(
    180deg,
    #0b2e22 0%,
    #114d39 35%,
    #18795a 70%,
    #21a373 100%
  ) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}


/* ===== Footer Globe Badge (index only) ===== */
.globe-badge{
  position:absolute;
  left:-18px;
  bottom:18px;
  width:72px;
  height:72px;
  display:block;
  opacity:0.70;
  transform: translateX(-22%) scale(0.92);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
}
.globe-badge img{
  width:100%;
  height:100%;
  display:block;
}
@keyframes globeSwirlPop{
  0%{ transform: translateX(-22%) scale(0.92) rotate(0deg); }
  55%{ transform: translateX(-6%) scale(1.06) rotate(14deg); }
  100%{ transform: translateX(-10%) scale(1.02) rotate(0deg); }
}
.globe-badge:hover{
  opacity:1;
  filter: drop-shadow(0 0 14px rgba(0, 140, 255, .55));
  animation: globeSwirlPop .55s ease both;
}

/* ===== Social icon glow + lift (contact footer only uses these) ===== */
.social-links{
  display:flex;
  flex-direction:row;
  gap:10px;
  margin-top: 6px;
}
.social-link{
  color:#fff;
  text-decoration: underline;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;
  transition: transform .22s ease, filter .22s ease, opacity .22s ease;
  opacity: .95;
}
.social-link img{
  width:18px;
  height:18px;
  display:inline-block;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
  transition: transform .22s ease, filter .22s ease;
}
.social-link:hover{
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(0, 140, 255, .55));
}
.social-link:hover img{
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 0 12px rgba(0, 140, 255, .85));
}
