:root {
  --ink: #262626;
  --ink-soft: #262626;
  --muted: #8e8e8e;
  --line: #dbdbdb;
  --paper: #fafafa;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --ig-blue: #0095f6;
  --ig-blue-hover: #1877f2;
  --ig-purple: #833ab4;
  --ig-pink: #e1306c;
  --ig-orange: #f77737;
  --ig-yellow: #fcaf45;
  --brand: #0095f6;
  --brand-deep: #00376b;
  --brand-glow: rgba(0, 149, 246, 0.22);
  --accent: #e1306c;
  --accent-deep: #c13584;
  --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --ok: #00ba7c;
  --danger: #ed4956;
  --ad-bg: #fafafa;
  --ad-line: #dbdbdb;
  --shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background-color: var(--paper);
  background-image:
    radial-gradient(700px 420px at 0% 0%, rgba(188, 24, 136, 0.08), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(240, 148, 51, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 40%, #f5f5f5 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 22%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.28);
  background: transparent;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ig-blue);
  background: rgba(0, 149, 246, 0.1);
  text-decoration: none;
}

/* Ads */
.ad-slot {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  margin: 0.85rem auto;
}

/* Hide placeholder ads until real ad code is pasted into .ad-frame */
.ad-slot:has(.ad-frame:empty) {
  display: none !important;
}

.mobile-anchor:has(.ad-frame:empty) {
  display: none !important;
}

.ad-rail:not(:has(.ad-frame:not(:empty))) {
  display: none !important;
}

.ad-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a97a8;
}

.ad-frame {
  width: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fafbfc, var(--ad-bg));
  border: 1px dashed #c9d3df;
  border-radius: 12px;
  color: #8b98a8;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ad-frame:empty::before {
  content: "Ad space — paste your ad code here";
  padding: 0.75rem;
}

.ad-frame:not(:empty) {
  background: transparent;
  border-style: solid;
  border-color: transparent;
}

.ad-slot--top .ad-frame {
  min-height: 70px;
  max-width: 728px;
}

.ad-slot--inline .ad-frame {
  min-height: 90px;
  max-width: 728px;
}

.ad-slot--box .ad-frame {
  width: 300px;
  min-height: 250px;
}

.ad-slot--tall .ad-frame {
  width: 300px;
  min-height: 600px;
}

.ad-slot--footer .ad-frame {
  min-height: 90px;
  max-width: 970px;
}

.ad-rail {
  display: none;
}

/* Hero / tool */
.hero {
  position: relative;
  padding: 0.85rem 0 0.75rem;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  animation: panelIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: min(420px, 70%);
  height: min(420px, 70%);
  border-radius: 46% 54% 40% 60%;
  background: var(--ig-gradient);
  opacity: 0.14;
  filter: blur(2px);
  animation: drift 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.tool,
.results {
  position: relative;
  z-index: 1;
}

.brand-hero {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  max-width: 34ch;
}

.hero-lead {
  margin: 0 0 0.8rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 149, 246, 0.08);
  color: var(--ig-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tool {
  display: grid;
  gap: 0.55rem;
}

.tool-shell {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.tool-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.45rem;
}

.tool input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fafafa;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tool input:focus {
  background: #fff;
  border-color: var(--ig-blue);
  box-shadow: 0 0 0 3px rgba(0, 149, 246, 0.18);
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary {
  background: var(--ig-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: var(--ig-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 149, 246, 0.28);
}

.btn-secondary:hover {
  background: var(--ig-blue-hover);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  background: #efefef;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: #e6e6e6;
  color: var(--ink);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn .spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.tool-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  min-height: 1.35rem;
  margin: 0.15rem 0 0;
  font-weight: 700;
  font-size: 0.94rem;
}

.status[data-tone="error"] {
  color: var(--danger);
}

.status[data-tone="ok"] {
  color: var(--ok);
}

.results {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  animation: rise 0.45s ease both;
}

.results[hidden] {
  display: none !important;
}

.result-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.result-meta {
  display: grid;
  gap: 0.1rem;
}

.result-meta strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.result-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 149, 246, 0.1);
  color: var(--ig-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.media-item {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: rise 0.45s ease both;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: stretch;
  max-width: 520px;
}

.media-thumb {
  width: 108px;
  height: 108px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #dce5ee;
}

.media-body {
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.4rem;
  align-content: center;
}

.media-type {
  display: inline-flex;
  width: fit-content;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(225, 48, 108, 0.1);
  color: var(--ig-pink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-title {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-body .btn {
  width: fit-content;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  border-radius: 10px;
}

.ad-rail {
  display: none;
  gap: 1rem;
}

.ad-rail-sticky {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

/* Sections */
.content-band {
  padding: 2.6rem 0;
}

.content-band + .content-band {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  padding: 1.25rem 1.15rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.feature-list h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 2.2rem 0 0.8rem;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.prose {
  max-width: 46rem;
}

.prose.wide {
  max-width: 720px;
}

.prose h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 0.9rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.prose a {
  font-weight: 700;
}

.page-kicker {
  margin: 0 0 0.45rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.blog-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0.35rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.related-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.related-list a {
  display: block;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
}

.related-list a:hover {
  color: var(--ig-blue);
  border-color: rgba(0, 149, 246, 0.35);
}

.teaser-link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.teaser-link:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 5.5rem;
  color: var(--muted);
  background:
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 0.65rem;
}

.footer-brand p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-cols h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-cols a {
  display: block;
  margin-bottom: 0.45rem;
  color: #737373;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-cols a:hover {
  color: var(--ig-blue);
  text-decoration: none;
}

.footer-disclaimer {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #737373;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-bottom a {
  color: var(--ig-blue);
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* legacy helpers */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Mobile sticky CTA strip space reserved for optional anchor ad */
.mobile-anchor {
  display: none;
}

@keyframes drift {
  from {
    transform: rotate(10deg) translateY(0);
  }
  to {
    transform: rotate(18deg) translateY(16px);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 980px) {
  .ad-rail {
    display: block;
  }
}

@media (max-width: 979px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .mobile-anchor {
    display: grid;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 0.45rem 0.75rem calc(0.45rem + env(safe-area-inset-bottom));
    background: rgba(245, 247, 250, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-anchor .ad-frame {
    min-height: 50px;
    border-radius: 10px;
  }

  .mobile-anchor .ad-frame:empty::before {
    content: "Mobile ad slot";
    font-size: 0.75rem;
  }
}

@media (max-width: 860px) {
  .steps,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .tool-row {
    grid-template-columns: 1fr 1fr;
  }

  .tool-row input {
    grid-column: 1 / -1;
  }

  .nav-links {
    display: none;
  }

  .hero-panel {
    padding: 0.95rem;
  }

  .media-item {
    grid-template-columns: 88px minmax(0, 1fr);
    max-width: none;
  }

  .media-thumb {
    width: 88px;
    height: 88px;
  }

  .media-body .btn {
    width: 100%;
  }
}
