﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(66, 125, 255, 0.16), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(60, 194, 176, 0.12), transparent 22%),
    linear-gradient(180deg, #090c12, #10141e 40%, #0b0d12 100%);
  color: #f2f5fb;
}

a {
  color: #8eb8ff;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 16px auto 48px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(17, 22, 32, 0.92);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.site-brand {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.brand-wrap {
  display: grid;
  gap: 4px;
}

.brand-sub {
  color: #8f9ab1;
  font-size: 13px;
}

.site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-main {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.hero,
.panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(17, 22, 32, 0.92);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.hero-rich {
  min-height: 320px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: #a9b7d7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.hero h1,
.panel h1,
.panel h2 {
  margin-top: 8px;
}

.lead,
.list-card span,
.meta-list,
.copy-block p {
  color: #a9b1c3;
}

.actions,
.card-stack,
.section-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

.actions {
  display: flex;
}

.hero-stack .info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn.primary {
  background: var(--theme-primary);
  color: white;
}

.btn.ghost {
  background: rgba(255,255,255,0.04);
  color: white;
}

.info-card,
.list-card,
.copy-block {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.accent-card {
  background: linear-gradient(180deg, rgba(66, 125, 255, 0.22), rgba(255,255,255,0.03));
}

.section-grid,
.detail-grid {
  grid-template-columns: 1fr 1fr;
}

.detail-grid-wide {
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  align-items: start;
}

.detail-main-panel,
.detail-side-panel {
  height: 100%;
}

.detail-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.avatar-badge-large {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 28px;
}

.detail-hero-copy {
  display: grid;
  gap: 8px;
}

.detail-hero-image-wrap {
  width: 220px;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.detail-hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.detail-section {
  margin-top: 22px;
}

.detail-stack {
  display: grid;
  gap: 12px;
}

.detail-subcard {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 6px;
}

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

.admin-dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard-stats .detail-subcard span {
  font-size: 28px;
  font-weight: 800;
  color: #f3f6fc;
}

.admin-toggle-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

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

.browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.browse-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.browse-card:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 125, 255, 0.28);
  background: rgba(255,255,255,0.045);
}

.admin-workflow-card {
  color: inherit;
}

.admin-workflow-card h3 {
  margin: 0;
  color: #f3f6fc;
}

.admin-workflow-card p {
  margin: 0;
  color: #c7d2e8;
  line-height: 1.6;
}

.browse-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.browse-avatar-image {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
}

.browse-card-head {
  display: grid;
  gap: 4px;
}

.browse-copy {
  display: grid;
  gap: 6px;
}

.browse-copy strong {
  font-size: 13px;
  color: #edf2fc;
}

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

.form-grid p {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.compact-field,
.full-width-field {
  display: grid;
  gap: 8px;
}

.profile-form-layout {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: start;
}

.classified-form-layout {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  justify-content: start;
}

.profile-form-row {
  display: grid;
  gap: 16px;
  align-items: flex-end;
  justify-content: start;
  width: auto;
  max-width: 100%;
}

.profile-form-row:first-child {
  grid-template-columns: 220px 72px 300px;
}

.profile-form-row:last-child {
  grid-template-columns: 220px 190px 180px;
  align-items: start;
}

.classified-form-row {
  display: grid;
  gap: 18px;
  align-items: flex-end;
  justify-content: start;
  width: auto;
  max-width: 100%;
}

.classified-form-row:first-child {
  grid-template-columns: 240px 220px 220px;
}

.classified-form-row:nth-child(2) {
  grid-template-columns: 260px 320px;
}

.classified-form-row-ages {
  grid-template-columns: 120px 120px;
}

.classified-width-category,
.classified-width-county,
.classified-width-city,
.classified-width-scope,
.classified-width-search-location,
.classified-width-age-small {
  min-width: 0;
}

.width-profile-type {
  min-width: 0;
}

.width-age {
  min-width: 0;
}

.width-county {
  min-width: 0;
}

.width-city {
  min-width: 0;
}

.width-location {
  min-width: 0;
}

.width-civil-status {
  min-width: 0;
}

.width-age input {
  max-width: 100%;
}

.full-width-field {
  max-width: 900px;
  margin-bottom: 18px;
}

.helptext {
  color: #97a3bd;
  font-size: 13px;
}

.char-counter {
  margin-top: 4px;
  color: #8f9ab1;
  font-size: 12px;
  text-align: right;
}

.char-counter-warning {
  color: #ffd27a;
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: #ff8a97;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
  color: white;
}

textarea {
  min-height: 140px;
}

.compact-field input,
.compact-field select {
  width: 100%;
  max-width: 100%;
}

.full-width-field textarea {
  width: min(100%, 900px);
}

input[type="file"] {
  padding: 10px;
}

select[multiple] {
  min-height: 160px;
}

.meta-list {
  padding-left: 18px;
  line-height: 1.8;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.filter-shell {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.profile-filter-shell {
  max-width: 760px;
}

.profile-filter-grid {
  grid-template-columns: 340px 220px;
  align-items: end;
}

.profile-filter-county,
.profile-filter-type {
  min-width: 0;
}

.filter-grid label {
  display: block;
  margin-bottom: 8px;
  color: #c8d1e4;
  font-size: 14px;
}

.image-grid,
.thread-list {
  display: grid;
  gap: 14px;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 14px;
}

.profile-gallery-card {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.profile-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.image-card,
.thread-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.image-card {
  max-width: 320px;
}

.image-frame {
  width: min(100%, 240px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  margin-bottom: 12px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.inline-love-form {
  margin: 0;
}

.love-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}

.love-button:hover {
  border-color: rgba(255, 188, 58, 0.38);
  background: rgba(255, 188, 58, 0.08);
}

.love-button-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffd96a, #ffb53d);
  color: #6b3700;
  font-size: 22px;
  box-shadow: inset 0 -4px 10px rgba(255,255,255,0.24);
}

.love-button-badge-image {
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.love-button-badge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.love-button-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.love-button-copy strong {
  font-size: 15px;
}

.love-button-copy span {
  color: #d7deee;
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #dfe7f6;
  font-size: 12px;
}

.message-bubble {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

.message-bubble-own {
  background: rgba(66, 125, 255, 0.12);
  border-color: rgba(66, 125, 255, 0.22);
}

.message-bubble strong,
.thread-card strong {
  display: block;
  margin-bottom: 6px;
}

.profile-card,
.ad-card {
  display: grid;
  gap: 10px;
}

.profile-card-wide,
.ad-card-wide {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.avatar-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soft-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #d6deef;
  font-size: 12px;
}

.presence-line,
.presence-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7d2e8;
  font-size: 13px;
}

.presence-pill {
  gap: 8px;
}

.presence-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.presence-dot-online {
  background: #3fd57d;
}

.presence-dot-offline {
  background: #ef5f67;
}

.verified-pill {
  background: rgba(74, 214, 144, 0.14);
  color: #c8ffe2;
}

.member-pill {
  background: rgba(76, 204, 123, 0.18);
  color: #146337;
  border: 1px solid rgba(76, 204, 123, 0.22);
}

.member-inline-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(76, 204, 123, 0.18);
  color: #146337;
  font-size: 11px;
  font-weight: 700;
}

.mini-ui-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
}

.info-line-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toolbar-icon-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toolbar-illustration {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.toolbar-illustration-image,
.hero-illustration {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.hero-illustration-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
}

.section-ui-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.detail-subcard-icon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.premium-feature {
  background: linear-gradient(180deg, rgba(66, 125, 255, 0.18), rgba(255,255,255,0.03));
}

.status-note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #dfe6f5;
}

.profile-edit-note {
  display: inline-block;
  width: fit-content;
  max-width: 620px;
}

.width-location .char-counter {
  text-align: left;
  margin-top: 6px;
}

.status-note-danger {
  border-color: rgba(255, 109, 126, 0.28);
  background: rgba(255, 109, 126, 0.08);
  color: #ffd5dc;
}

.message-flash-stack {
  display: grid;
  gap: 12px;
}

.danger-link {
  border-color: rgba(255, 109, 126, 0.24);
  color: #ffb7c2;
}

@media (max-width: 900px) {
  .hero,
  .section-grid,
  .detail-grid,
  .feature-columns,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .profile-form-layout {
    gap: 14px;
  }

  .classified-form-layout {
    gap: 14px;
  }

  .profile-form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .classified-form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-form-row:first-child,
  .profile-form-row:last-child {
    grid-template-columns: 1fr;
  }

  .classified-form-row:first-child,
  .classified-form-row:nth-child(2),
  .classified-form-row-ages {
    grid-template-columns: 1fr;
  }

  .profile-filter-shell {
    max-width: 100%;
  }

  .profile-filter-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-stats,
  .admin-toggle-grid {
    grid-template-columns: 1fr;
  }
}


.detail-main-panel {
  display: grid;
  gap: 22px;
}

.detail-side-stack {
  display: grid;
  gap: 16px;
}

.detail-side-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.detail-cta-card {
  background: linear-gradient(180deg, rgba(66, 125, 255, 0.16), rgba(255,255,255,0.03));
}

.detail-section {
  display: grid;
  gap: 14px;
}

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

.profile-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.profile-quick-card {
  width: 100%;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 8px;
}

.profile-quick-card strong {
  font-size: 15px;
}

.profile-quick-card p {
  margin: 0;
  color: #d7deee;
  line-height: 1.5;
}

.detail-copy-block {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.detail-copy-block p,
.detail-side-copy {
  color: #c6d1e8;
  line-height: 1.75;
  margin: 0;
}

.detail-copy-block-profile {
  max-width: 720px;
}

.detail-copy-block-feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.detail-empty-state {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  color: #bcc6da;
}

.detail-empty-state strong {
  display: block;
  margin-bottom: 6px;
  color: #eef3fd;
}

.detail-stack-profile,
.detail-main-panel .detail-empty-state {
  max-width: 720px;
}

.detail-side-lead {
  margin-bottom: 0;
}

.detail-subcard-journal strong {
  font-size: 16px;
}

.visitor-card-main {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.visitor-card-main p {
  margin: 4px 0 0;
  color: #c6d1e8;
}

.owner-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.owner-stat-card {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 4px;
}

.owner-stat-card strong {
  font-size: 26px;
  line-height: 1;
}

.owner-stat-card span {
  color: #c6d1e8;
  font-size: 13px;
}

.account-facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.account-fact-card {
  width: 100%;
  max-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 8px;
}

.account-fact-card p {
  margin: 0;
  color: #d7deee;
  line-height: 1.5;
}

.account-fact-card-email {
  max-width: 320px;
}

.account-fact-card-email p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-copy-block {
  max-width: 760px;
}

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

  .detail-hero-image-wrap {
    width: min(100%, 280px);
  }

  .detail-facts-grid,
  .detail-facts-grid-profile {
    grid-template-columns: 1fr;
  }

  .profile-quick-card {
    max-width: none;
  }
}

.thread-list-rich {
  gap: 16px;
}

.thread-card-rich {
  display: grid;
  gap: 10px;
}

.thread-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.thread-card-avatar .avatar-badge,
.thread-card-avatar .browse-avatar-image {
  width: 64px;
  height: 64px;
}

.thread-card-content {
  display: grid;
  gap: 10px;
}

.thread-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.thread-meta,
.thread-preview {
  color: #aeb8cb;
}

.thread-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.thread-preview {
  margin: 0;
  line-height: 1.65;
}

.thread-preview-locked {
  color: #d7deee;
}

.thread-card-unread {
  border-color: rgba(66, 125, 255, 0.24);
  background: linear-gradient(180deg, rgba(66, 125, 255, 0.08), rgba(255,255,255,0.03));
}

.thread-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.thread-lock-note {
  color: #d4ddf0;
  font-size: 13px;
}

.message-stack {
  display: grid;
  gap: 12px;
}

.message-bubble-locked {
  border-style: dashed;
  border-color: rgba(255, 198, 112, 0.2);
  background: rgba(255, 196, 112, 0.06);
}

.message-locked-copy {
  display: grid;
  gap: 10px;
}

.message-locked-copy p {
  margin: 0;
}

.nav-with-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.nav-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-badge-hidden {
  display: none;
}

.message-notification-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.message-notification-card-hidden {
  display: none;
}

.message-notification-media {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  flex: 0 0 auto;
}

.message-notification-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.message-notification-copy {
  display: grid;
  gap: 6px;
}

.message-notification-copy p,
.message-lock-banner p {
  margin: 0;
}

.message-notification-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.message-lock-banner {
  display: grid;
  gap: 12px;
}

.conversation-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
}

.conversation-chip-button {
  min-height: 0;
  height: auto;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.2;
  width: max-content;
  max-width: max-content;
  flex: 0 0 auto;
  align-self: flex-start;
}

.locked-pill {
  background: rgba(255, 197, 112, 0.16);
  color: #ffe0af;
}

.unread-pill {
  background: rgba(66, 125, 255, 0.18);
  color: #dce8ff;
}

.compact-form-grid p {
  max-width: none;
}

.auth-panel {
  display: grid;
  gap: 18px;
}

.permission-shell {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.permission-boolean-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  max-width: none;
}

.permission-boolean-input {
  display: none;
}

.permission-grid {
  display: grid;
  grid-template-columns: 320px 180px;
  gap: 14px;
  align-items: start;
  justify-content: start;
}

.permission-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 12px;
  align-content: start;
}

.permission-option-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.permission-card:first-child .permission-option-list ul {
  grid-template-columns: 1fr;
  column-gap: 0;
}

.permission-option-list li {
  display: block;
  color: #d7deee;
}

.permission-inline-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  color: #d7deee;
  cursor: pointer;
}

.permission-inline-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.permission-inline-option span {
  line-height: 1.4;
}

.permission-option-list-types ul {
  gap: 12px;
}

@media (max-width: 900px) {
  .permission-grid {
    grid-template-columns: 1fr;
  }

  .permission-card:first-child .permission-option-list ul {
    grid-template-columns: 1fr;
  }

  .permission-boolean-row {
    max-width: none;
  }
}

body {
  background: linear-gradient(180deg, #f4f6f4 0%, #eef2ee 100%);
  color: #44515d;
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: #2f6f78;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  background: linear-gradient(90deg, #6ea8af 0%, #7db8b6 45%, #9cc8ba 100%);
  border-bottom: 1px solid rgba(65, 94, 97, 0.12);
  box-shadow: 0 10px 30px rgba(82, 107, 109, 0.12);
}

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

.topbar-status-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #24484f;
  font-size: 13px;
  font-weight: 700;
}

.topbar-status-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ffffff;
  color: #365b61;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.detail-activity-card {
  background: linear-gradient(180deg, rgba(111, 173, 170, 0.08), #ffffff);
}

.site-brand-large {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.site-shell-app {
  width: 100%;
  margin: 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 280px;
  min-height: calc(100vh - 72px);
}

.app-sidebar,
.app-rightbar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.app-sidebar {
  border-right: 1px solid rgba(92, 109, 118, 0.12);
}

.app-rightbar {
  border-left: 1px solid rgba(92, 109, 118, 0.12);
}

.app-content {
  padding: 28px 30px 44px;
  margin-top: 0;
  align-content: start;
}

.sidebar-section {
  padding: 18px 0;
  border-bottom: 1px solid rgba(92, 109, 118, 0.09);
}

.sidebar-label {
  margin: 0 18px 12px;
  color: #8a959d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: grid;
  gap: 2px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: #55616d;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.sidebar-link:hover {
  background: #f2f6f5;
  color: #264e57;
}

.sidebar-link-active {
  background: linear-gradient(90deg, rgba(111, 173, 170, 0.22), rgba(255, 255, 255, 0.5));
  color: #22464e;
  border-left-color: #6ea8af;
  font-weight: 700;
}

.online-sidebar {
  position: sticky;
  top: 88px;
  padding: 18px;
}

.ad-sidebar {
  margin-top: 16px;
}

.online-sidebar-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.online-sidebar-head .sidebar-label {
  margin: 0;
}

.online-sidebar-list {
  display: grid;
  gap: 8px;
}

.online-sidebar-user {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  color: inherit;
  transition: background 0.18s ease;
}

.online-sidebar-user:hover {
  background: #f3f7f6;
}

.online-sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8e6e7, #f7fbfb);
  border: 1px solid rgba(92, 109, 118, 0.12);
  display: grid;
  place-items: center;
  color: #5c7e80;
  font-weight: 800;
}

.online-sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.online-sidebar-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.online-sidebar-copy strong,
.online-sidebar-copy span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.online-sidebar-copy strong {
  color: #465460;
}

.online-sidebar-copy span {
  color: #93a0a7;
  font-size: 12px;
}

.ad-slot-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: linear-gradient(180deg, rgba(224, 239, 237, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 28px rgba(110, 132, 135, 0.08);
}

.ad-slot-card-inline {
  margin-bottom: 20px;
}

.ad-slot-label {
  margin: 0;
}

.ad-slot-content {
  display: grid;
  gap: 14px;
}

.ad-slot-content-sidebar {
  gap: 12px;
}

.ad-slot-copy {
  display: grid;
  gap: 8px;
}

.ad-slot-copy h2 {
  margin: 0;
  font-size: 20px;
  color: #40505b;
}

.ad-slot-copy p {
  margin: 0;
  color: #61717a;
  line-height: 1.7;
}

.ad-slot-media {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: #f7fbfb;
}

.ad-slot-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.ad-slot-embed {
  width: 100%;
  overflow-x: auto;
}

.ad-slot-embed iframe,
.ad-slot-embed img,
.ad-slot-embed ins,
.ad-slot-embed div {
  max-width: 100%;
}

.ad-slot-placeholder {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(92, 109, 118, 0.2);
  background: rgba(255, 255, 255, 0.65);
  color: #5f6d76;
  display: grid;
  gap: 8px;
}

.ad-slot-placeholder strong,
.ad-slot-placeholder p {
  margin: 0;
}

.hero,
.panel {
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(110, 132, 135, 0.08);
  backdrop-filter: none;
}

.hero {
  min-height: 0;
  align-items: start;
}

.hero-rich {
  min-height: 0;
}

.lead,
.list-card span,
.meta-list,
.copy-block p,
.detail-copy-block p,
.detail-side-copy,
.thread-preview {
  color: #6f7c86;
}

.eyebrow {
  color: #94a1a6;
  letter-spacing: 0.12em;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(96, 118, 126, 0.14);
}

.btn.primary {
  background: linear-gradient(135deg, #63a4ad, #80bbb5);
  color: #fff;
}

.btn.ghost {
  background: #f8fbfa;
  color: #44606a;
}

.info-card,
.list-card,
.copy-block,
.detail-subcard,
.detail-side-card,
.profile-gallery-card,
.image-card,
.thread-card,
.feature-card,
.profile-quick-card {
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: #ffffff;
}

.accent-card,
.detail-cta-card,
.detail-copy-block-feature {
  background: linear-gradient(180deg, rgba(131, 192, 186, 0.18), rgba(255, 255, 255, 0.96));
}

.browse-card {
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: #ffffff;
  border-radius: 18px;
}

.browse-card:hover {
  border-color: rgba(110, 168, 175, 0.4);
  background: #fcfefd;
  box-shadow: 0 12px 26px rgba(111, 148, 151, 0.12);
}

.browse-avatar-image {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  border: 1px solid rgba(92, 109, 118, 0.12);
}

.avatar-badge {
  background: linear-gradient(135deg, #7db8b6, #b2d5cf);
  color: #fff;
}

.soft-pill,
.pill {
  background: #f2f7f6;
  color: #62727c;
}

.verified-pill {
  background: rgba(108, 191, 149, 0.16);
  color: #2f7b56;
}

.filter-shell {
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: rgba(248, 251, 250, 0.9);
  border-radius: 18px;
}

input,
select,
textarea {
  border: 1px solid rgba(96, 118, 126, 0.16);
  background: #fff;
  color: #465460;
}

.status-note {
  border: 1px solid rgba(111, 173, 170, 0.22);
  background: rgba(111, 173, 170, 0.12);
  color: #4f666f;
}

.status-note-danger {
  border-color: rgba(207, 121, 121, 0.22);
  background: rgba(207, 121, 121, 0.09);
  color: #8f5555;
}

.detail-hero {
  align-items: center;
}

.detail-hero-image-wrap {
  width: 180px;
  border-radius: 18px;
  border: 1px solid rgba(92, 109, 118, 0.12);
}

.detail-copy-block,
.detail-empty-state {
  border: 1px solid rgba(92, 109, 118, 0.12);
  background: #fbfcfc;
}

.message-bubble {
  background: #f3f6f7;
  border: 1px solid rgba(92, 109, 118, 0.12);
}

.message-bubble-own {
  background: linear-gradient(135deg, rgba(111, 173, 170, 0.2), rgba(157, 205, 195, 0.24));
  border-color: rgba(111, 173, 170, 0.28);
}

.danger-link {
  color: #a55b5b;
  border-color: rgba(190, 126, 126, 0.18);
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px 8px 8px;
  color: #70808a;
  font-size: 14px;
}

.legal-footer a {
  color: #2f6f78;
}

.legal-footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f6f78;
  font: inherit;
  cursor: pointer;
}

.legal-footer-button:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(92, 109, 118, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(88, 111, 114, 0.16);
  z-index: 60;
}

.cookie-banner-hidden {
  display: none;
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-copy strong,
.cookie-banner-copy p {
  margin: 0;
}

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

.swipe-panel {
  overflow: hidden;
}

.swipe-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.swipe-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top right, rgba(60, 194, 176, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(14, 20, 31, 0.98), rgba(10, 14, 23, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform-origin: center bottom;
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
  touch-action: pan-y;
  user-select: none;
}

.swipe-card:hover {
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
}

.swipe-card-media {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(8, 12, 19, 0.08), rgba(8, 12, 19, 0.36)),
    linear-gradient(160deg, rgba(66, 125, 255, 0.28), rgba(60, 194, 176, 0.18));
}

.swipe-card-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.swipe-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(8, 12, 19, 0), rgba(8, 12, 19, 0.48));
  pointer-events: none;
}

.swipe-card-fallback {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(160deg, rgba(66, 125, 255, 0.9), rgba(60, 194, 176, 0.82));
  color: #ffffff;
  font-size: clamp(88px, 14vw, 150px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.swipe-card-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  position: relative;
}

.swipe-card-body h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.swipe-card-body .lead {
  margin: 0;
  font-size: 18px;
}

.swipe-desktop-actions {
  margin-top: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.swipe-button {
  min-height: 56px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 18px;
}

.swipe-button-skip {
  border-color: rgba(255, 134, 154, 0.24);
  color: #ffd2db;
}

.swipe-button-like {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  border-color: transparent;
}

.swipe-feedback {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -12px);
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8, 12, 19, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f4f7fd;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.swipe-feedback-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.swipe-card-transitioning {
  opacity: 0.22;
}

.swipe-card-left {
  transform: translateX(-120px) rotate(-9deg);
}

.swipe-card-right {
  transform: translateX(120px) rotate(9deg);
}

@media (max-width: 1200px) {
  .app-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .app-rightbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(92, 109, 118, 0.12);
  }

  .sidebar-section {
    padding: 14px 0;
  }

  .sidebar-nav {
    grid-template-columns: 1fr 1fr;
  }

  .app-content {
    padding: 18px 14px 34px;
  }

  .site-brand-large {
    font-size: 28px;
  }

  .swipe-card {
    grid-template-columns: 1fr;
  }

  .swipe-card-media img,
  .swipe-card-fallback {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .app-topbar {
    min-height: 64px;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-brand-large {
    font-size: 24px;
  }

  .topbar-status-links {
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .sidebar-nav {
    grid-template-columns: 1fr;
  }

  .sidebar-link {
    min-height: 42px;
    padding: 0 14px;
  }

  .app-content {
    padding: 14px 10px 26px;
  }

  .hero,
  .panel {
    padding: 16px;
    border-radius: 16px;
  }

  .detail-hero {
    gap: 14px;
    margin-bottom: 16px;
  }

  .avatar-badge-large {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
  }

  .detail-copy-block,
  .detail-side-card,
  .detail-subcard,
  .browse-card,
  .list-card,
  .feature-card,
  .thread-card,
  .image-card,
  .profile-gallery-card,
  .account-fact-card,
  .profile-quick-card,
  .owner-stat-card {
    padding: 14px;
    border-radius: 16px;
  }

  .detail-hero-image-wrap {
    width: min(100%, 220px);
  }

  .detail-section {
    margin-top: 18px;
  }

  .section-head {
    align-items: start;
  }

  .browse-grid,
  .profile-gallery,
  .detail-facts-grid,
  .detail-facts-grid-profile,
  .owner-stats-grid,
  .filter-grid,
  .feature-columns {
    grid-template-columns: 1fr;
  }

  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .inline-actions .btn,
  .inline-actions button,
  .inline-actions a,
  .love-button {
    width: 100%;
  }

  .account-fact-card,
  .account-fact-card-email,
  .profile-quick-card,
  .image-card {
    max-width: none;
  }

  .profile-edit-note,
  .detail-copy-block-profile,
  .detail-main-panel .detail-empty-state,
  .detail-stack-profile,
  .account-copy-block,
  .full-width-field {
    max-width: 100%;
  }

  .browse-avatar-image {
    width: 72px;
    height: 72px;
  }

  .toolbar,
  .toolbar-icon-copy,
  .thread-card-top,
  .visitor-card-main,
  .online-sidebar-head {
    align-items: start;
  }

  .toolbar,
  .toolbar-icon-copy,
  .thread-card-top {
    flex-direction: column;
  }

  .thread-card-main,
  .message-notification-card {
    grid-template-columns: 1fr;
  }

  .thread-card-avatar {
    display: none;
  }

  .conversation-top-actions {
    display: flex;
    grid-template-columns: none;
    width: auto;
  }

  .conversation-top-actions .conversation-chip-button {
    width: max-content;
    max-width: max-content;
    min-height: 0;
    min-width: 0;
    flex: 0 0 auto;
  }

  .message-notification-actions {
    justify-content: flex-start;
  }

  .filter-shell {
    padding: 14px;
  }

  textarea {
    min-height: 120px;
  }

  .swipe-shell {
    min-height: auto;
  }

  .swipe-card {
    min-height: auto;
    border-radius: 24px;
  }

  .swipe-card-media img,
  .swipe-card-fallback {
    min-height: 360px;
  }

  .swipe-card-body {
    padding: 20px 18px 18px;
  }

  .swipe-card-body h2 {
    font-size: 32px;
  }

  .swipe-desktop-actions {
    grid-template-columns: 1fr;
  }

  .swipe-button {
    min-height: 52px;
  }

  .swipe-feedback {
    top: 12px;
    width: calc(100% - 32px);
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100vw - 12px, 100%);
    margin: 8px auto 20px;
  }

  .app-topbar {
    min-height: 58px;
  }

  .app-content {
    padding: 12px 8px 22px;
  }

  .hero,
  .panel {
    padding: 14px;
    border-radius: 14px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .btn {
    min-height: 44px;
    padding: 11px 14px;
  }

  .detail-copy-block,
  .detail-side-card,
  .detail-subcard,
  .browse-card,
  .list-card,
  .thread-card,
  .account-fact-card,
  .profile-quick-card,
  .owner-stat-card {
    padding: 12px;
  }

  .avatar-badge-large {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .detail-hero-image-wrap,
  .browse-avatar-image {
    width: 64px;
    height: 64px;
  }

  .online-sidebar {
    padding: 14px;
  }

  .char-counter {
    font-size: 11px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 18px;
    bottom: 10px;
  }

  .nav-with-badge {
    justify-content: space-between;
  }

  .message-notification-media {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .swipe-panel {
    padding: 12px;
  }

  .swipe-card {
    border-radius: 20px;
  }

  .swipe-card-media img,
  .swipe-card-fallback {
    min-height: 300px;
  }

  .swipe-card-body {
    gap: 14px;
    padding: 16px;
  }

  .swipe-card-body h2 {
    font-size: 28px;
  }

  .swipe-card-body .lead {
    font-size: 16px;
  }

  .swipe-button {
    font-size: 15px;
  }
}
