:root {
  --bg: #FFF1F2;
  --surface: #FFFFFF;
  --text: #3F1D22;
  --muted: #9F5F68;
  --primary: #FB7185;
  --secondary: #FDBA74;
  --accent: #34D399;
  --border: rgba(63,29,34,0.12);
  --startup: #FB7185;
  --pitch: #FDBA74;
  --investors: rgba(52, 211, 153, 0.12);
  --vision: rgba(251, 113, 133, 0.14);
  --growth: rgba(253, 186, 116, 0.2);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --nav-dark: #2a1216;
  --hero-dark: #3F1D22;
  --max-w: 1200px;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 75% 45% at 8% -8%, var(--vision), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 0%, var(--growth), transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, #ffe4e8 45%, #fff7ed 100%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "startup pitch";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  font-size: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 36px,
      rgba(63, 29, 34, 0.03) 36px,
      rgba(63, 29, 34, 0.03) 37px
    );
}

body::after {
  content: "investors vision growth";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  font-size: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--investors) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(251, 113, 133, 0.08) 0%, transparent 38%);
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.disclosure-wrap {
  position: relative;
  z-index: 50;
  padding: 0 16px;
}

.disclosure-badge {
  display: block;
  max-width: fit-content;
  margin: 8px auto;
  padding: 5px 18px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.site-header {
  position: static;
  z-index: 40;
  background-color: var(--nav-dark);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    );
  border-bottom: 2px solid var(--accent);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--secondary);
}

.brand-lockup img {
  width: 36px;
  height: 41px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(63, 29, 34, 0.5);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  z-index: 960;
  background: var(--nav-dark);
  padding: 88px 28px 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 20px;
  margin-bottom: 4px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero {
  position: relative;
  background: var(--hero-dark);
  min-height: 280px;
  padding: 60px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 60px;
  background: var(--accent);
  opacity: 0.2;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  animation: hero-rise 0.7s ease both;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metric-pop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: rgba(63, 29, 34, 0.88);
  background-image:
    linear-gradient(rgba(63, 29, 34, 0.82), rgba(63, 29, 34, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.offers-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.offers-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fade-up 0.55s ease both;
}

.offer-card:nth-child(2) {
  animation-delay: 0.08s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.16s;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 10px;
  box-sizing: border-box;
}

.offer-card .offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #fff;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: center;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  margin: 0;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.45;
  text-align: center;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
  transform: scale(1.02);
}

.info-section {
  position: relative;
  z-index: 1;
  padding: 52px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 70ch;
}

.info-section ul {
  padding-left: 1.2rem;
  margin: 12px 0;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 8px;
}

.section-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.section-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.metric-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px 14px;
  text-align: center;
  animation: metric-pop 0.5s ease both;
}

.metric-tile .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--startup);
}

.metric-tile .lbl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--growth), transparent 40%, var(--vision));
  opacity: 0.45;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand .brand-lockup {
  color: var(--text);
}

.footer-brand .brand-name {
  color: var(--text);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.footer-badges a {
  display: inline-block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-company {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-disclosure {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 920px;
}

.footer-disclosure p {
  margin-bottom: 8px;
}

.footer-updated {
  font-size: 11px;
  color: var(--muted);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--primary);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 12px;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.email-error {
  display: none;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-success.visible {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(63, 29, 34, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(63, 29, 34, 0.25);
  animation: fade-up 0.35s ease both;
}

.modal-box h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.modal-box p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  box-shadow: 0 -8px 32px rgba(63, 29, 34, 0.12);
  display: none;
}

#cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.88rem;
  color: var(--muted);
}

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

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.ad-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 20px;
}

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

.redirect-notes {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.5;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.page-404 h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-404 p {
  color: var(--muted);
  margin-bottom: 24px;
}

.topic-hero {
  background: linear-gradient(135deg, var(--hero-dark) 0%, #5c2a32 100%);
  padding: 48px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.topic-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: var(--pitch);
  opacity: 0.15;
  border-radius: 50%;
}

.topic-hero h1 {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.topic-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.topic-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--text);
}

.topic-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.topic-content p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 72ch;
}

.topic-content ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.topic-content li {
  margin-bottom: 8px;
}

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 12px 0 12px 20px;
  margin: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  max-width: 560px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.stat-band .stat {
  text-align: center;
}

.stat-band .stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--startup);
  font-weight: 800;
}

.stat-band .stat span {
  font-size: 0.75rem;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin: 24px 0;
}

.sidebar-rail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  margin: 24px 0;
}

.rail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  position: sticky;
  top: 24px;
}

.rail-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.rail-card ul {
  list-style: none;
  padding: 0;
}

.rail-card li {
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.image-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0;
  margin: 20px 0;
}

.image-rail .decor-wrap {
  flex: 0 0 auto;
}

.mosaic-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin: 28px 0;
  background: linear-gradient(120deg, var(--vision), transparent 60%);
  padding: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .split-layout,
  .sidebar-rail,
  .mosaic-band,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .rail-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 20px;
    min-height: 220px;
  }

  .hero::before {
    height: 36px;
  }

  .nav-inner {
    padding: 16px 16px;
    min-height: 64px;
  }

  .disclosure-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
  }

  .image-rail {
    max-width: 100%;
  }

  .mosaic-band,
  .bg-band {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .offer-logo {
    width: 140px;
    height: 70px;
  }

  .offer-card .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
