/* Tailwag — the pet social network.
   Design system: light canvas (#F8F9FA), white cards, 20px radii, ultra-soft
   elevation, geometric sans, indigo→pink accents with gradient story rings.
   One file serves both surfaces (/deck/tailwag and /tailwag); the .tw--mobile
   modifier + media queries do the collapsing. */

.tw {
  --tw-bg: #F8F9FA;
  --tw-card: #FFFFFF;
  --tw-ink: #111827;
  --tw-mut: #6B7280;
  --tw-line: #F3F4F6;
  --tw-accent: #6366F1;
  --tw-accent-soft: #EEF2FF;
  --tw-pink: #EC4899;
  --tw-grad: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
  --tw-ring: conic-gradient(from 210deg, #6366F1, #EC4899, #F59E0B, #6366F1);
  --tw-radius: 20px;
  --tw-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
  --tw-shadow-hover: 0 10px 30px -6px rgba(17, 24, 39, 0.08);
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system,
               'Segoe UI', sans-serif;
  color: var(--tw-ink);
  background: var(--tw-bg);
  border-radius: 24px;
  padding: 20px;
  min-height: 70vh;
}
.tw *, .tw *::before, .tw *::after { box-sizing: border-box; }
.tw a { color: inherit; text-decoration: none; }
.tw b { font-weight: 700; }
.tw-grow { flex: 1 1 auto; }

/* ---- layout ---- */
/* The deck shell's .canvas-wrap reserves a right-rail grid track even when a
   page emits no right rail; Tailwag brings its own three-column layout, so
   reclaim the full canvas (same :has() trick the community pages use). */
.canvas-wrap:has(> .tw) { grid-template-columns: minmax(0, 1fr); }

/* Column tiers are driven by CONTAINER queries, not viewport media queries:
   the deck rail, the canvas max-width and OS display scaling all shrink the
   canvas independently of the viewport — measuring the viewport is exactly
   what starved the center column at launch. Tiers, by .tw content width:
     < 700px    feed only (single column)
     700–1019   left rail + feed (suggestions strip stays in the feed column)
     ≥ 1020px   the full 250 | feed(≤640) | 300 social layout                */
.tw { container-type: inline-size; }
.tw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: start;
}
.tw-rail { display: none; flex-direction: column; gap: 16px; position: sticky; top: 16px; }
.tw-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
@container (min-width: 700px) {
  .tw-grid { grid-template-columns: 250px minmax(0, 640px); }
  .tw-rail--left { display: flex; }
}
@container (min-width: 1020px) {
  .tw-grid { grid-template-columns: 250px minmax(420px, 640px) 300px; }
  .tw-rail--right { display: flex; }
  /* the right rail carries the suggestions now — drop the in-feed strip */
  .tw-main .tw-suggest-strip-wrap { display: none; }
}
@container (max-width: 480px) {
  .tw { padding: 12px; border-radius: 16px; }
}

/* ---- cards ---- */
.tw-card {
  background: var(--tw-card);
  border: 1px solid var(--tw-line);
  border-radius: var(--tw-radius);
  box-shadow: var(--tw-shadow);
  padding: 16px;
}
.tw-h {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.tw-hint { color: var(--tw-mut); font-size: 0.82rem; margin: 0 0 8px; }
.tw-fine { color: var(--tw-mut); font-size: 0.78rem; line-height: 1.5; }
.tw-fine p { margin: 0 0 10px; }
.tw-fine a { color: var(--tw-accent); font-weight: 600; }
.tw-badge {
  background: var(--tw-pink); color: #fff; font-size: 0.66rem; font-weight: 700;
  border-radius: 999px; padding: 1px 7px; line-height: 1.5;
}
.tw-empty { text-align: center; color: var(--tw-mut); padding: 36px 20px; }
.tw-empty-big { font-weight: 800; color: var(--tw-ink); font-size: 1.05rem; margin-bottom: 6px; }

/* ---- avatars ---- */
.tw-ava {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  background: var(--tw-accent-soft);
}
.tw-ava--fb { color: var(--tw-accent); font-weight: 800; font-size: 1.05rem; }
.tw-ava--sm { width: 32px; height: 32px; font-size: 0.85rem; }
.tw-ava--lg { width: 60px; height: 60px; font-size: 1.4rem; }
.tw-ava--story { width: 58px; height: 58px; }

/* ---- buttons ---- */
.tw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--tw-line); background: var(--tw-card);
  color: var(--tw-ink); font: inherit; font-weight: 700; font-size: 0.85rem;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.tw-btn:hover { transform: scale(1.02); box-shadow: var(--tw-shadow-hover); }
.tw-btn:active { transform: scale(0.97); }
.tw-btn--primary { background: var(--tw-grad); border: none; color: #fff; }
.tw-btn--primary:hover { filter: brightness(1.06); }
.tw-btn[disabled] { opacity: 0.55; pointer-events: none; }
.tw-chip-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; background: var(--tw-line); color: var(--tw-mut);
  font: inherit; font-weight: 700; font-size: 0.8rem;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.tw-chip-btn:hover { transform: scale(1.02); background: var(--tw-accent-soft); color: var(--tw-accent); }
.tw-chip-btn svg { width: 17px; height: 17px; }
.tw-see-all {
  display: block; text-align: center; font-size: 0.8rem; font-weight: 700;
  color: var(--tw-accent); padding: 8px 0 2px;
}

/* ---- stories rail ---- */
.tw-stories-wrap { padding: 14px 10px 10px; }
.tw-stories {
  display: flex; gap: 14px; overflow-x: auto; padding: 2px 6px 6px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tw-stories::-webkit-scrollbar { display: none; }
.tw-story {
  border: none; background: none; padding: 0; cursor: pointer; font: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 72px; flex: none;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tw-story:hover { transform: translateY(-2px) scale(1.04); }
.tw-story-ring {
  display: inline-flex; padding: 3px; border-radius: 50%;
  background: var(--tw-ring);
}
.tw-story-ring .tw-ava { border: 2.5px solid #fff; }
.tw-story-name {
  font-size: 0.68rem; font-weight: 600; color: var(--tw-mut);
  max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---- story viewer ---- */
.tw-story-modal {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(10, 10, 16, 0.92);
  display: flex; align-items: center; justify-content: center;
  animation: tw-fade 0.18s ease;
}
.tw-story-frame {
  position: relative; width: min(420px, 94vw); height: min(78vh, 740px);
  border-radius: 22px; overflow: hidden; background: #16161d;
  display: flex; flex-direction: column;
  animation: tw-pop-in 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tw-story-bars { display: flex; gap: 4px; padding: 10px 12px 0; }
.tw-story-bar { flex: 1; height: 3px; border-radius: 99px; background: rgba(255,255,255,0.28); overflow: hidden; }
.tw-story-bar > i { display: block; height: 100%; width: 0; background: #fff; }
.tw-story-bar.is-done > i { width: 100%; }
.tw-story-bar.is-live > i { animation: tw-bar var(--tw-story-secs, 4s) linear forwards; }
.tw-story-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; color: #fff; font-size: 0.85rem;
}
.tw-story-who { font-weight: 700; }
.tw-story-when { color: rgba(255,255,255,0.65); font-size: 0.75rem; }
.tw-story-close {
  margin-left: auto; border: none; background: rgba(255,255,255,0.14);
  color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
}
.tw-story-stage { position: relative; flex: 1; min-height: 0; }
.tw-story-stage img { width: 100%; height: 100%; object-fit: contain; }
.tw-story-zone { position: absolute; top: 0; bottom: 0; width: 38%; border: none; background: none; cursor: pointer; }
.tw-story-zone--prev { left: 0; }
.tw-story-zone--next { right: 0; width: 62%; }
.tw-story-open {
  display: block; text-align: center; padding: 12px; color: #fff;
  font-size: 0.8rem; font-weight: 700; background: rgba(255,255,255,0.08);
}
@keyframes tw-bar { from { width: 0; } to { width: 100%; } }
@keyframes tw-fade { from { opacity: 0; } }
@keyframes tw-pop-in { from { transform: scale(0.88); opacity: 0; } }

/* ---- composer ---- */
.tw-composer-row { display: flex; gap: 12px; align-items: flex-start; }
.tw-composer-input {
  flex: 1; min-width: 0; border: none; resize: none; overflow: hidden;
  font: inherit; font-size: 0.95rem;
  color: var(--tw-ink); background: var(--tw-line);
  border-radius: 18px; padding: 12px 16px; min-height: 44px; max-height: 220px;
  outline: none; transition: background 0.15s ease, box-shadow 0.15s ease;
}
.tw-composer-input:focus { background: #fff; box-shadow: 0 0 0 2px var(--tw-accent-soft), 0 0 0 3.5px var(--tw-accent); }
.tw-composer-bar { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.tw-upload-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.tw-upload-strip:empty { display: none; }
.tw-upload-thumb { position: relative; }
.tw-upload-thumb img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 12px;
  border: 1px solid var(--tw-line);
}
.tw-upload-x {
  position: absolute; top: -6px; right: -6px; width: 20px; height: 20px;
  border: none; border-radius: 50%; background: var(--tw-ink); color: #fff;
  font-size: 0.65rem; cursor: pointer; line-height: 1;
}
.tw-error {
  margin-top: 10px; background: #FEF2F2; color: #B91C1C;
  border-radius: 12px; padding: 9px 12px; font-size: 0.8rem;
}
.tw-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tw-cta p { margin: 0; flex: 1 1 220px; color: var(--tw-mut); font-size: 0.88rem; }

/* ---- feed tabs ---- */
.tw-tabs {
  display: flex; gap: 6px; background: var(--tw-card);
  border: 1px solid var(--tw-line); border-radius: 999px; padding: 5px;
  box-shadow: var(--tw-shadow); width: max-content;
}
.tw-tab {
  border: none; background: none; font: inherit; font-weight: 700;
  font-size: 0.82rem; color: var(--tw-mut); padding: 8px 18px;
  border-radius: 999px; cursor: pointer; transition: all 0.18s ease;
}
.tw-tab.is-active { background: var(--tw-ink); color: #fff; }

/* ---- post card ---- */
.tw-feed { display: flex; flex-direction: column; gap: 16px; }
.tw-post { padding: 16px 16px 8px; animation: tw-rise 0.3s ease; }
@keyframes tw-rise { from { opacity: 0; transform: translateY(10px); } }
.tw-post-head { display: flex; gap: 12px; align-items: center; }
.tw-post-who { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.tw-post-name { font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 6px; }
.tw-follow-inline {
  border: none; background: none; color: var(--tw-accent); font: inherit;
  font-size: 0.8rem; font-weight: 700; cursor: pointer; padding: 0;
}
.tw-follow-inline:hover { text-decoration: underline; }
.tw-post-when { color: var(--tw-mut); font-size: 0.74rem; }
.tw-post-when:hover { text-decoration: underline; }
.tw-post-tools { margin-left: auto; display: flex; gap: 6px; }
.tw-tool-btn {
  border: none; background: none; color: #C4C8CF; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer; font-size: 0.85rem;
  transition: all 0.15s ease;
}
.tw-tool-btn:hover { background: var(--tw-line); color: var(--tw-mut); }
.tw-tool-btn--danger:hover { background: #FEF2F2; color: #B91C1C; }
.tw-post-text { margin: 10px 0 4px; font-size: 0.93rem; line-height: 1.55; overflow-wrap: anywhere; }
.tw-post-text p { margin: 0 0 8px; }

/* ---- media grids (1–4, +N overlay) ---- */
.tw-media {
  position: relative;
  display: grid; gap: 4px; margin: 10px -6px 4px;
  border-radius: 16px; overflow: hidden;
}
.tw-media--1 { grid-template-columns: 1fr; }
.tw-media--2 { grid-template-columns: 1fr 1fr; }
.tw-media--3 { grid-template-columns: 2fr 1fr; }
.tw-media--3 .tw-img:first-child { grid-row: span 2; }
.tw-media--4 { grid-template-columns: 1fr 1fr; }
.tw-img {
  position: relative; display: block; overflow: hidden;
  background: linear-gradient(110deg, #EEF0F3 8%, #F7F8FA 24%, #EEF0F3 40%);
  background-size: 200% 100%; animation: tw-shimmer 1.4s linear infinite;
  min-height: 120px;
}
.tw-media--1 .tw-img { max-height: 520px; }
.tw-media--1 .tw-img img { height: auto; max-height: 520px; }
.tw-media--2 .tw-img, .tw-media--4 .tw-img { aspect-ratio: 1 / 1; }
.tw-media--3 .tw-img { aspect-ratio: 1 / 1; }
.tw-media--3 .tw-img:first-child { aspect-ratio: auto; height: 100%; }
.tw-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transform: scale(1.02); transition: opacity 0.35s ease, transform 0.5s ease;
}
.tw-img.is-loaded { animation: none; background: var(--tw-line); }
.tw-img.is-loaded img { opacity: 1; transform: scale(1); }
.tw-img--more::after {
  content: attr(data-more);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(17, 24, 39, 0.45); color: #fff; font-weight: 800; font-size: 1.3rem;
}
@keyframes tw-shimmer { to { background-position: -200% 0; } }

/* double-tap paw burst */
.tw-burst {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
}
.tw-burst-ico { width: 96px; height: 96px; color: #fff; filter: drop-shadow(0 4px 18px rgba(236, 72, 153, 0.6)); }
.tw-burst.is-on { animation: tw-burst 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes tw-burst {
  0% { opacity: 0; transform: scale(0.3); }
  30% { opacity: 1; transform: scale(1.15); }
  60% { opacity: 1; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1); }
}

/* ---- counts + action bar ---- */
.tw-counts {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 2px 6px; color: var(--tw-mut); font-size: 0.78rem;
  border-bottom: 1px solid var(--tw-line);
}
.tw-counts-likes { display: inline-flex; align-items: center; gap: 5px; }
.tw-counts-likes.is-zero { visibility: hidden; }
.tw-counts-paw { width: 15px; height: 15px; color: var(--tw-pink); }
.tw-counts-comments { margin-left: auto; }
.tw-actions { display: flex; padding: 4px 0; }
.tw-act {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; background: none; font: inherit; font-weight: 700;
  font-size: 0.82rem; color: var(--tw-mut); padding: 9px 6px;
  border-radius: 12px; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.tw-act:hover { background: var(--tw-line); transform: scale(1.02); }
.tw-act-ico { width: 18px; height: 18px; }
.tw-act--like.is-liked { color: var(--tw-pink); }
.tw-act--like.is-liked .tw-act-ico { fill: var(--tw-pink); stroke: var(--tw-pink); }
.tw-act--like.is-popping .tw-act-ico { animation: tw-spring 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes tw-spring {
  0% { transform: scale(1); }
  35% { transform: scale(1.45) rotate(-8deg); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* ---- comments ---- */
.tw-comments { padding: 8px 0 8px; display: flex; flex-direction: column; gap: 8px; }
.tw-comment { display: flex; gap: 8px; align-items: flex-start; animation: tw-rise 0.25s ease; }
.tw-comment-bubble {
  background: var(--tw-line); border-radius: 4px 16px 16px 16px;
  padding: 8px 12px; font-size: 0.84rem; min-width: 0;
}
.tw-comment.is-pending .tw-comment-bubble { opacity: 0.55; }
.tw-comment-name { font-weight: 700; display: block; font-size: 0.78rem; }
.tw-comment-body { overflow-wrap: anywhere; }
.tw-comment-body p { margin: 0; display: inline; }
.tw-comment-when { display: block; color: var(--tw-mut); font-size: 0.68rem; margin-top: 3px; }
.tw-more-comments { font-size: 0.78rem; font-weight: 700; color: var(--tw-mut); padding: 2px 0; }
.tw-more-comments:hover { color: var(--tw-accent); }
.tw-comment--compose { align-items: center; }
.tw-comment-input {
  flex: 1; border: none; background: var(--tw-line); border-radius: 999px;
  font: inherit; font-size: 0.84rem; padding: 9px 14px; outline: none;
  transition: box-shadow 0.15s ease, background 0.15s ease;
}
.tw-comment-input:focus { background: #fff; box-shadow: 0 0 0 2px var(--tw-accent-soft), 0 0 0 3.5px var(--tw-accent); }

/* ---- left rail ---- */
.tw-me { text-align: center; }
.tw-me .tw-ava--lg { margin: 4px auto 8px; }
.tw-me-name { font-weight: 800; }
.tw-me-stats { display: flex; justify-content: center; gap: 16px; margin-top: 8px; color: var(--tw-mut); font-size: 0.78rem; }
.tw-me-stats b { color: var(--tw-ink); }
.tw-activity-row {
  display: flex; gap: 10px; padding: 8px 2px; border-radius: 12px;
  font-size: 0.8rem; line-height: 1.4; transition: background 0.15s ease;
}
.tw-activity-row:hover { background: var(--tw-line); }
.tw-activity-ico { flex: none; }
.tw-activity-body i { font-style: normal; color: var(--tw-mut); }
.tw-when { display: block; color: var(--tw-mut); font-size: 0.7rem; }
.tw-explore { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; border-radius: 12px; overflow: hidden; }
.tw-explore-cell { aspect-ratio: 1 / 1; min-height: 0; }
.tw-explore-cell:hover img { transform: scale(1.06); }

/* ---- right rail ---- */
.tw-msg-row, .tw-suggest-row {
  display: flex; gap: 10px; align-items: center; padding: 7px 2px;
  border-radius: 12px; font-size: 0.82rem; transition: background 0.15s ease;
}
.tw-msg-row:hover { background: var(--tw-line); }
.tw-msg-body, .tw-suggest-body { min-width: 0; display: flex; flex-direction: column; }
.tw-msg-body b, .tw-suggest-body b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tw-msg-meta { color: var(--tw-mut); font-size: 0.72rem; }
.tw-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tw-accent); flex: none; }
.tw-follow-btn {
  margin-left: auto; border: none; background: var(--tw-accent-soft);
  color: var(--tw-accent); font: inherit; font-weight: 700; font-size: 0.75rem;
  padding: 6px 14px; border-radius: 999px; cursor: pointer; flex: none;
  transition: all 0.16s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tw-follow-btn:hover { transform: scale(1.05); }
.tw-follow-btn.is-following { background: var(--tw-line); color: var(--tw-mut); }

/* ---- skeletons ---- */
.tw-skel-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.tw-skel-dot, .tw-skel-lines span, .tw-skel-block {
  background: linear-gradient(110deg, #EEF0F3 8%, #F7F8FA 24%, #EEF0F3 40%);
  background-size: 200% 100%; animation: tw-shimmer 1.4s linear infinite;
}
.tw-skel-dot { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.tw-skel-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.tw-skel-lines span { height: 11px; border-radius: 6px; width: 42%; }
.tw-skel-lines span + span { width: 24%; }
.tw-skel-block { height: 230px; border-radius: 14px; }
.tw-sentinel { height: 2px; }

/* ---- toast ---- */
.tw-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(8px);
  background: var(--tw-ink); color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 11px 18px; border-radius: 999px; z-index: 260; opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  max-width: 88vw;
}
.tw-toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- mobile surface frame ---- */
.tw-m-top {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #F3F4F6;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
.tw-m-back {
  width: 34px; height: 34px; flex: none; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; background: #F3F4F6;
  color: #111827; text-decoration: none; font-size: 1.15rem; font-weight: 700;
}
.tw-m-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tw-m-brand-ico { width: 20px; height: 20px; color: #EC4899; }
.tw-m-bell { position: relative; text-decoration: none; font-size: 1.05rem; }
.tw-m-bell .tw-badge { position: absolute; top: -6px; right: -10px; }
.tw--mobile { border-radius: 0; padding: 12px 10px 80px; min-height: 100vh; }
.tw--mobile .tw-feed { gap: 12px; }
.tw--mobile .tw-card { border-radius: 18px; }
.tw--mobile .tw-media { margin: 10px -10px 4px; border-radius: 0; }
.tw-suggest-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.tw-suggest-strip::-webkit-scrollbar { display: none; }
.tw-suggest-tile {
  flex: none; width: 118px; display: flex; flex-direction: column; align-items: center;
  gap: 7px; padding: 12px 8px; border: 1px solid var(--tw-line); border-radius: 16px;
  font-size: 0.78rem; text-align: center;
}
.tw-suggest-tile .tw-follow-btn { margin: 0; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tw *, .tw *::before, .tw *::after { animation: none !important; transition: none !important; }
}
