:root {
  --red: #e11d48;
  --red-dark: #be123c;
  --red-soft: #fff1f2;
  --ink: #111827;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e7eb;
  --bg-soft: #f8fafc;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #f59e0b;
  --error: #dc2626;
  --blue: #2563eb;
  --wa: #25d366;
  --shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark,
.avatar {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
  border-radius: 12px;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wordmark {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.wordmark span {
  color: var(--red);
}

.tagline-small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.icon-btn,
.menu-link {
  min-height: 44px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--red);
  background: var(--red-soft);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.hero {
  padding: 32px 0 20px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 7vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 {
  font-weight: 800;
}

.page-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
}

.hero p,
.page-subtitle {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fff8fa);
  border: 1px solid #fecdd3;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  background: var(--red-soft);
  border-radius: 999px;
}

.trust-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  padding: 9px 6px;
  background: linear-gradient(90deg, #fffafb, #fff);
  border: 1px solid #f8dfe5;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(225, 29, 72, 0.08);
}

.trust-strip-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  color: #172033;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.08;
  text-align: left;
}

.trust-strip-item + .trust-strip-item {
  border-left: 1px solid #f2dce2;
}

.trust-strip-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  color: #ed1749;
  background: #fff0f3;
  border-radius: 50%;
}

.trust-strip-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.search-panel,
.code-card,
.card,
.publisher-card,
.topic-card,
.publisher-post-card,
.saved-alert-card,
.alert-detail-card,
.delivery-card,
.summary-card,
.filter-panel,
.history-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 12px;
}

.home-search-panel {
  margin-top: 22px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
}

.input-wrap {
  position: relative;
}

.search-input-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  pointer-events: none;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
}

.input.has-icon {
  padding-left: 44px;
  padding-right: 48px;
}

.search-input-wrap .input {
  padding-right: 48px;
}

.search-clear-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-clear-btn:hover,
.search-clear-btn:focus-visible {
  color: var(--ink);
  background: var(--red-soft);
  outline: none;
}

.textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
}

.primary-btn {
  color: #fff;
  background: var(--red);
}

.primary-btn:hover {
  background: var(--red-dark);
}

.primary-btn:disabled {
  color: var(--faint);
  background: var(--line);
}

.secondary-btn {
  color: var(--red);
  background: #fff;
  border-color: #fecdd3;
}

.ghost-btn {
  color: var(--red);
  background: transparent;
}

.inline-link {
  width: fit-content;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.code-card {
  margin-top: 16px;
  padding: 16px;
}

.home-code-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #e91e4d 0%, #d70f3f 58%, #b80934 100%);
  border-color: rgba(233, 30, 77, 0.36);
  box-shadow: 0 18px 42px rgba(233, 30, 77, 0.24);
}

.home-code-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.code-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.code-card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(124, 4, 38, 0.18);
}

.code-card-icon svg {
  width: 23px;
  height: 23px;
}

.code-card h2,
.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.home-code-card h2 {
  color: #fff;
}

.section-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.home-code-card .section-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.code-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.home-code-card .input {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(233, 30, 77, 0.04);
}

.home-code-card .input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.code-submit-btn {
  color: var(--red);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(124, 4, 38, 0.16);
}

.code-submit-btn:hover {
  color: var(--red-dark);
  background: #fff5f7;
}

.chips {
  display: flex;
  gap: 8px;
  margin: 20px -16px 0;
  padding: 0 16px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.chip.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(225, 29, 72, 0.18);
}

.section {
  padding: 20px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.publisher-grid {
  display: grid;
  gap: 14px;
}

.lazy-load-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--muted);
  background: #fff7fb;
  border: 1px dashed #fecdd3;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.lazy-load-status.complete {
  border-style: solid;
  background: #fff;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.load-more-btn {
  min-width: 190px;
}

.loader-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: loaderPulse 0.9s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.78);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.publisher-card {
  padding: 16px;
}

.home-publisher-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.24), transparent 25%),
    linear-gradient(135deg, #e91e4d 0%, #d70f3f 58%, #b80934 100%);
  border-color: rgba(233, 30, 77, 0.36);
  box-shadow: 0 18px 42px rgba(233, 30, 77, 0.22);
}

.home-publisher-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.home-publisher-card > * {
  position: relative;
  z-index: 1;
}

.publisher-top {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
}

.avatar {
  color: var(--red);
  background: var(--red-soft);
  font-weight: 800;
}

.home-publisher-card .avatar {
  color: var(--red);
  background: #fff;
  box-shadow: 0 12px 24px rgba(124, 4, 38, 0.16);
}

.publisher-name {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.home-publisher-card .publisher-name {
  color: #fff;
}

.verified {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}

.verified svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.publisher-meta,
.publisher-desc,
.small-text {
  color: var(--muted);
  font-size: 14px;
}

.home-publisher-card .publisher-meta,
.home-publisher-card .publisher-desc {
  color: rgba(255, 255, 255, 0.86);
}

.publisher-meta {
  margin-top: 2px;
  font-weight: 600;
}

.publisher-desc {
  margin: 10px 0 0;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--red-dark);
  background: var(--red-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.home-publisher-card .pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.publisher-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.publisher-foot strong {
  color: var(--ink);
  font-size: 14px;
}

.home-publisher-card .publisher-foot strong {
  color: #fff;
}

.home-publisher-card .secondary-btn {
  color: var(--red);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 24px rgba(124, 4, 38, 0.16);
}

.home-publisher-card .secondary-btn:hover {
  color: var(--red-dark);
  background: #fff5f7;
}

.publisher-code {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.publisher-code-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
}

.publisher-layout {
  display: grid;
  gap: 18px;
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.publisher-identity {
  padding: 18px 0 6px;
}

.publisher-identity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.subscribe-cta {
  width: auto;
  min-height: 42px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 14px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(225, 29, 72, 0.16);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.subscribe-cta:hover {
  background: var(--red-dark);
}

.subscribe-cta svg {
  width: 18px;
  height: 18px;
}

.publisher-identity-main {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
}

.publisher-logo {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 16px;
  font-size: 20px;
  font-weight: 800;
}

.publisher-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.publisher-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 16px 0 4px;
  padding: 4px;
  background: #fff7f9;
  border: 1px solid #fecdd3;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.08);
}

.publisher-tab {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 800;
}

.publisher-tab svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.publisher-tab small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.publisher-tab.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.24);
}

.publisher-tab.active svg {
  color: #fff;
}

.posts-head {
  margin-bottom: 14px;
}

.publisher-posts-list {
  display: grid;
  gap: 12px;
}

.publisher-post-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 34%);
  gap: 12px;
  align-items: start;
  padding: 12px;
  overflow: hidden;
  background: #fff;
  border-color: #dbe2ea;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.publisher-posts-list .publisher-post-card {
  background: #fff;
  background-image: none;
  border: 1px solid #e5e7eb;
}

.publisher-post-card:hover,
.publisher-post-card:focus-visible {
  border-color: #f19ab0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.publisher-post-card.text-only {
  grid-template-columns: minmax(0, 1fr);
}

.post-media {
  width: 100%;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  overflow: hidden;
  border: 1px solid #fecdd3;
  border-radius: 14px;
  background: #f8fafc;
  justify-self: start;
}

.post-media img {
  display: block;
  width: 100%;
  max-height: 300px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.post-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 14px;
}

.post-icon svg {
  width: 28px;
  height: 28px;
}

.post-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.post-topline {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.post-message-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 11px;
}

.post-message-icon svg {
  width: 20px;
  height: 20px;
}

.post-meta-block {
  min-width: 0;
}

.post-label {
  display: block;
  margin: 14px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.post-message {
  min-width: 0;
}

.post-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}

.post-chip,
.post-pin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 10px;
  color: var(--red);
  background: #ffe4ea;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.post-pin {
  background: transparent;
}

.post-pin svg {
  width: 15px;
  height: 15px;
}

.post-time {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.publisher-post-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.post-context {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.post-read-more svg {
  width: 14px;
  height: 14px;
}

.publisher-post-card p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.saved-alerts-section {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.saved-alerts-list {
  display: grid;
  gap: 12px;
}

.saved-alert-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-color: #fecdd3;
}

.saved-alert-card > a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.saved-alert-card h3 {
  margin: 2px 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.saved-alert-card p {
  display: -webkit-box;
  margin: 0 0 3px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-arrow {
  display: grid;
  place-items: center;
  color: var(--red);
}

.post-arrow svg {
  width: 24px;
  height: 24px;
}

.alert-detail-shell {
  max-width: 900px;
}

.alert-publisher-identity {
  padding-bottom: 0;
}

.alert-hero {
  padding: 10px 0 12px;
}

.alert-meta-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.alert-feed-title {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.alert-feed-summary {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
}

.alert-feed-media,
.alert-feed-text {
  margin: 4px 0 18px;
  overflow: hidden;
  border: 1px solid #fecdd3;
  border-radius: 18px;
  background: #fff7f9;
}

.alert-feed-media {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.alert-feed-media img {
  display: block;
  width: min(100%, 720px);
  max-height: 820px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
}

.alert-feed-text {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px;
}

.alert-feed-text-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 14px;
}

.alert-feed-text p {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 750;
  white-space: pre-wrap;
}

.alert-detail-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 228, 232, 0.92), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff7f9 100%);
  border-color: #fb9aaa;
}

.alert-detail-card-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 52px 52px 52px;
  gap: 12px;
  align-items: center;
}

.alert-detail-card-head.simple {
  grid-template-columns: 58px minmax(0, 1fr);
}

.alert-detail-card-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.alert-detail-icon,
.detail-row-icon,
.detail-icon-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 14px;
}

.detail-icon-btn {
  border: 1px solid #fecdd3;
}

.detail-icon-btn.saved {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.22);
}

.detail-rows {
  display: grid;
  gap: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #fecdd3;
}

.detail-row:first-child {
  border-top: 0;
}

.detail-row span:not(.detail-row-icon) {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.detail-row strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.detail-row-message {
  align-items: start;
}

.detail-row-message strong {
  max-width: 760px;
  color: #334155;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 800;
}

.detail-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.alert-detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.alert-detail-actions .primary-btn,
.alert-detail-actions .secondary-btn {
  width: 100%;
  min-height: 58px;
  font-size: 17px;
  font-weight: 900;
}

.topics-list,
.delivery-list,
.alerts-list,
.history-list {
  display: grid;
  gap: 12px;
}

.topic-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
}

.topic-card.selected {
  background: var(--red-soft);
  border-color: #fb7185;
}

.topic-card input,
.consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.topic-card h3,
.delivery-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.private-note,
.inline-error {
  margin-top: 8px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
}

.passcode-row {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.delivery-card,
.summary-card,
.card,
.filter-panel {
  padding: 16px;
}

.delivery-card {
  display: grid;
  gap: 12px;
}

.whatsapp-alert-card {
  scroll-margin-top: 86px;
}

.whatsapp-alert-card > div {
  min-width: 0;
}

.whatsapp-alert-card > div,
.whatsapp-alert-card .small-text {
  width: 100%;
  box-sizing: border-box;
}

.delivery-title {
  display: flex;
  gap: 12px;
}

.delivery-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 12px;
}

.delivery-icon.whatsapp {
  color: var(--wa);
  background: #ecfdf3;
}

.success-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #15803d;
  background: var(--success-bg);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.warning-box {
  padding: 12px;
  color: #92400e;
  background: #fffbeb;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 6px;
}

.phone-input {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
}

.phone-input:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.phone-input span {
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: #fff5f7;
  border-right: 1px solid #fecdd3;
  font-size: 14px;
  font-weight: 800;
}

.phone-input .input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-input .input:focus {
  box-shadow: none;
}

.otp-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #fff7fb;
  border: 1px solid #fecdd3;
  border-radius: 12px;
}

.otp-panel.verified {
  background: var(--success-bg);
  border-color: #bbf7d0;
}

.otp-panel.verified,
.otp-panel.verified .otp-panel-head,
.otp-panel.verified .otp-panel-head > div,
.otp-panel.verified .otp-message {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.otp-panel.verified .otp-panel-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.otp-panel.verified .otp-panel-head strong,
.otp-panel.verified .otp-panel-head p {
  display: block;
  width: 100%;
  max-width: none;
}

.otp-panel-head,
.otp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.otp-panel-head > div {
  min-width: 0;
}

.otp-panel-head .otp-verified-badge {
  justify-self: start;
}

.otp-panel-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.otp-panel-head p,
.otp-message {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.otp-panel.verified .otp-panel-head strong,
.otp-panel.verified .otp-message {
  color: #15803d;
}

.otp-verified-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.otp-verified-badge svg {
  width: 14px;
  height: 14px;
}

.otp-btn {
  min-height: 44px;
}

.otp-input {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.field label,
.consent {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.summary-card {
  scroll-margin-bottom: 18px;
}

.submit-preferences-btn {
  width: 100%;
}

.summary-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.summary-list strong {
  color: var(--ink);
}

.narrow-shell {
  max-width: 620px;
}

.api-request-card {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(225, 29, 72, 0.12), transparent 30%),
    #fff;
  border: 1px solid #fecdd3;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.section-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--red);
  background: #fff1f4;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.api-request-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.api-request-form .primary-btn {
  width: 100%;
  margin-top: 4px;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  color: #be123c;
  background: #fff1f4;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.request-sent-modal {
  place-items: center;
  text-align: center;
}

.request-sent-modal h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
}

.request-sent-modal p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.request-sent-modal .primary-btn {
  width: 100%;
}

.action-modal {
  justify-items: center;
  text-align: center;
}

.action-modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 999px;
}

.action-modal.error .action-modal-icon {
  background: var(--error);
}

.action-modal h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.action-modal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.action-modal .primary-btn {
  width: 100%;
}

.success-page {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
}

.success-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 34px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.success-tick {
  width: 86px;
  height: 86px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  animation: successPop 0.7s ease both;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.25);
}

.success-tick svg {
  width: 42px;
  height: 42px;
  stroke-width: 3;
}

.success-card h1 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.success-card p {
  max-width: 340px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.success-card .primary-btn {
  width: 100%;
  margin-bottom: 12px;
}

.redirect-countdown strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  margin: 0 2px;
  color: #fff;
  background: var(--success);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.alerts-list .card,
.history-card {
  padding: 14px;
}

.subscription-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.toggle-row > div {
  display: grid;
  gap: 3px;
}

.toggle-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.toggle-row.muted strong {
  color: var(--muted);
}

.toggle {
  width: 48px;
  height: 28px;
  position: relative;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
}

.toggle.on {
  background: var(--red);
}

.toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.18s ease;
}

.toggle.on::after {
  transform: translateX(20px);
}

.toggle:disabled {
  cursor: wait;
  opacity: 0.7;
}

.subscription-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-btn.danger {
  color: var(--error);
  border-color: #fecdd3;
  background: #fff5f7;
}

.history-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.history-card.unread {
  border-color: #fecdd3;
  background: #fffafb;
}

.footer {
  margin-top: auto;
  padding: 54px 0 28px;
  color: var(--muted);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-giant {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  min-height: 132px;
  width: max-content;
  max-width: 100%;
  justify-self: end;
  color: #d5d7dc;
  filter: grayscale(1);
  overflow: visible;
  user-select: none;
}

.footer-giant-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  flex: 0 0 auto;
  color: #c5c7cc;
  background: #ececef;
  border-radius: 28px;
}

.footer-giant-mark svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.7;
}

.footer-giant-wordmark {
  max-width: 100%;
  color: #c9cbd0;
  font-size: 126px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-giant-wordmark span {
  color: #aeb1b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-self: start;
  align-self: center;
}

.footer-brand {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.footer a {
  color: var(--ink);
  font-weight: 700;
}

.info-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.info-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.info-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.static-hero {
  background:
    radial-gradient(circle at top right, rgba(225, 29, 72, 0.08), transparent 34%),
    linear-gradient(180deg, #fff, #fff7f9);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.58);
}

.modal-backdrop.open {
  display: flex;
}

.qr-modal {
  width: min(460px, 100%);
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #fecdd3;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.24);
}

.feed-alert-modal {
  width: min(680px, 100%);
  max-height: min(88vh, 820px);
  display: grid;
  gap: 16px;
  overflow: auto;
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

.feed-alert-modal .post-time {
  margin-top: 7px;
}

.feed-alert-modal h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 900;
}

.feed-alert-context {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.feed-alert-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.feed-alert-image img {
  display: block;
  width: min(100%, 440px);
  max-height: 620px;
  object-fit: contain;
  border-radius: 9px;
}

.feed-alert-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.feed-alert-footer svg {
  color: var(--red);
}

.feed-alert-subscribe {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 16px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.feed-alert-subscribe:hover {
  background: #be123c;
  transform: translateY(-1px);
}

.feed-alert-subscribe:focus-visible {
  outline: 3px solid rgba(225, 29, 72, 0.24);
  outline-offset: 2px;
}

.feed-alert-subscribe svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.qr-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111827;
  border-radius: 16px;
}

.qr-frame video,
.qr-reader,
.qr-reader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-reader {
  position: absolute;
  inset: 0;
}

.qr-reader > div {
  border: 0 !important;
}

.qr-corners {
  position: absolute;
  inset: 14%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 0 0 999px rgba(17, 24, 39, 0.22);
  pointer-events: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: none;
  background: rgba(17, 24, 39, 0.36);
}

.drawer-backdrop.open {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(340px, 88vw);
  padding: 20px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.18s ease;
  box-shadow: -12px 0 32px rgba(17, 24, 39, 0.14);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.drawer-links {
  display: grid;
  gap: 8px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: var(--ink);
  border-radius: 12px;
  font-weight: 700;
}

.menu-link:hover {
  background: var(--red-soft);
  color: var(--red);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 80;
  width: min(420px, calc(100vw - 32px));
  padding: 13px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.2);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.empty {
  padding: 28px 16px;
  color: var(--muted);
  text-align: center;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 16px;
}

.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .shell {
    padding: 0 24px;
  }

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

  .otp-panel-head,
  .otp-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .otp-panel.verified .otp-panel-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .chips {
    margin-inline: 0;
    padding-inline: 0;
    flex-wrap: wrap;
    overflow: visible;
  }

  .publisher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer {
    padding-top: 36px;
  }

  .publisher-identity-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .publisher-identity-header .subscribe-cta {
    margin-left: auto;
  }

  .footer-giant {
    justify-content: flex-end;
    gap: 12px;
    min-height: 82px;
    width: 100%;
  }

  .footer-giant-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .footer-giant-mark svg {
    width: 36px;
    height: 36px;
  }

  .footer-giant-wordmark {
    font-size: 56px;
    line-height: 0.98;
  }

  .alert-detail-card-head {
    grid-template-columns: 50px minmax(0, 1fr) 46px 46px 46px;
    gap: 8px;
  }

  .alert-detail-card-head.simple {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .alert-detail-icon,
  .detail-row-icon,
  .detail-icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .detail-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .publisher-post-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .post-media {
    width: min(100%, 300px);
    grid-column: 1;
    grid-row: 2;
  }

  .post-content {
    grid-column: 1;
    grid-row: 1;
  }

  .post-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .publisher-post-card h3 {
    font-size: 16px;
  }

  .post-topline {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .post-message-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .post-time {
    width: 100%;
    margin-left: 0;
  }

  .publisher-tab {
    min-height: 52px;
    font-size: 15px;
  }

  .publisher-tab small {
    display: none;
  }
}

@media (min-width: 920px) {
  .desktop-nav {
    display: flex;
  }

  .hero {
    padding: 56px 0 32px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
  }

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

  .publisher-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .publisher-layout.posts-mode {
    grid-template-columns: minmax(0, 840px);
    justify-content: center;
  }

  .topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
.whatsapp-publisher-banner {
  padding: 10px 16px 0;
  background: #fff;
}

.whatsapp-publisher-banner-inner {
  width: min(100%, 1200px);
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 9px;
  border: 1px solid #f3cbd5;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff 0%, #fff8fa 100%);
  box-shadow: 0 5px 18px rgba(225, 29, 72, 0.08);
}

.whatsapp-publisher-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #18b957;
}

.whatsapp-publisher-mark svg {
  width: 24px;
  height: 24px;
}

.whatsapp-publisher-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.1;
}

.whatsapp-publisher-copy strong {
  color: #172033;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 800;
}

.whatsapp-publisher-copy span {
  color: #e11d48;
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-publisher-copy small {
  margin-top: 2px;
  overflow: hidden;
  color: #657084;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-publisher-cta {
  min-width: 145px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 11px;
  border-radius: 9px;
  color: #fff;
  background: #ed1749;
  box-shadow: 0 5px 12px rgba(237, 23, 73, 0.2);
  font-size: 10.5px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.whatsapp-publisher-cta > span:first-child {
  display: grid;
  place-items: center;
}

.whatsapp-publisher-cta > span:first-child svg {
  width: 20px;
  height: 20px;
}

.whatsapp-publisher-cta b {
  font-size: 12px;
  letter-spacing: 0.2px;
}

.whatsapp-cta-label {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.whatsapp-cta-label > span {
  font-size: 10px;
  font-weight: 800;
}

.whatsapp-publisher-cta svg {
  width: 15px;
  height: 15px;
}

.whatsapp-publisher-cta:hover {
  background: #c8103c;
}

@media (max-width: 560px) {
  .trust-strip {
    padding: 8px 2px;
  }

  .trust-strip-item {
    gap: 3px;
    padding: 0 3px;
    font-size: 8px;
  }

  .trust-strip-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .trust-strip-icon svg {
    width: 10px;
    height: 10px;
  }

  .whatsapp-publisher-banner {
    padding: 7px 8px 0;
  }

  .whatsapp-publisher-banner-inner {
    gap: 8px;
    padding: 6px;
  }

  .whatsapp-publisher-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .whatsapp-publisher-copy strong {
    font-size: 10px;
    line-height: 1.05;
  }

  .whatsapp-publisher-copy span {
    font-size: 9px;
  }

  .whatsapp-publisher-copy small {
    font-size: 8px;
  }

  .whatsapp-publisher-cta {
    min-width: 130px;
    gap: 5px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .whatsapp-publisher-cta > span:first-child svg {
    width: 17px;
    height: 17px;
  }

  .whatsapp-publisher-cta b {
    font-size: 10px;
  }

  .whatsapp-cta-label > span {
    font-size: 8px;
  }
}
