:root {
  --bg: #eef7f6;
  --panel: #ffffff;
  --ink: #17323a;
  --muted: #60737a;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --line: #d7e5e2;
  --danger: #b42318;
  --success: #0f7a3d;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(135deg, #e7fbf7, #f5f9ff);
  color: var(--ink);
  min-height: 100vh;
}

a { color: var(--brand-dark); }
.header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px;
}
.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.hero {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(15,118,110,0.94), rgba(23,50,58,0.92)), url('../img/medical-bg.svg');
  background-size: cover;
  color: white;
  border-radius: 24px;
  padding: 42px;
  min-height: 380px;
  box-shadow: 0 20px 60px rgba(23, 50, 58, 0.12);
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 16px; }
.hero p { font-size: 18px; line-height: 1.7; max-width: 760px; }
.panel, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(23, 50, 58, 0.08);
}
.notice-board h2 { margin-top: 0; }
.notice-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.notice-list li { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.button, button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.button.secondary, button.secondary { background: #17323a; }
button:disabled { opacity: 0.55; cursor: not-allowed; }
.form { display: grid; gap: 14px; max-width: 640px; }
.form label { display: grid; gap: 6px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.muted { color: var(--muted); }
.message { margin: 12px 0; font-weight: 700; }
.message.error { color: var(--danger); }
.message.success { color: var(--success); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: 10px; vertical-align: top; }
th { background: #f4fbfa; }
.admin-section { margin: 24px 0; }
.compact { padding: 16px; }
.notice-body { line-height: 1.8; font-size: 17px; }
.footer { color: var(--muted); text-align: center; padding: 30px; }

@media (max-width: 820px) {
  .landing-grid { grid-template-columns: 1fr; }
  .hero { grid-column: span 1; padding: 26px; }
  .nav { align-items: flex-start; flex-direction: column; }
}

.payment-result-panel {
  max-width: 760px;
  margin: 60px auto;
  text-align: center;
}
.payment-result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.payment-result-badge.success {
  background: #dcfce7;
  color: #166534;
}
.payment-result-badge.error {
  background: #fee2e2;
  color: #991b1b;
}
.payment-result-badge.info {
  background: #dbeafe;
  color: #1e40af;
}
.payment-result-meta {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 22px 0;
  padding: 14px;
  text-align: left;
}

/* Upgrade: user profile approval workflow and message box */
.profile-section-card {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(16, 185, 129, 0.07));
}

.profile-form {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

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

.profile-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.profile-form input,
.profile-form select {
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}

.user-dialog.hidden {
  display: none;
}

.user-dialog {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.user-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.user-dialog-card {
  position: relative;
  width: min(520px, 96vw);
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.30);
}

.user-dialog-card .dialog-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-size: 32px;
  font-weight: 900;
}

.user-dialog.success .dialog-icon { background: linear-gradient(135deg, #059669, #10b981); }
.user-dialog.error .dialog-icon { background: linear-gradient(135deg, #dc2626, #f97316); }
.user-dialog.warning .dialog-icon { background: linear-gradient(135deg, #d97706, #f59e0b); }

.user-dialog-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.user-dialog-card p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.55;
}

.user-dialog-card .dialog-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  color: #475569;
  background: #eef2ff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .profile-form .form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Complete mobile/tablet responsive upgrade
   Applies to public pages, notices, auth forms, payment pages
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

button, .button, input, select, textarea {
  max-width: 100%;
}

.button, button {
  min-height: 44px;
  touch-action: manipulation;
}

.container {
  width: min(1180px, 100%);
}

.nav,
.nav-actions {
  min-width: 0;
}

.logo {
  min-width: 0;
  overflow-wrap: anywhere;
}

.panel,
.card,
.hero {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

.table-wrap table,
.enhanced-table {
  min-width: 720px;
}

input, select, textarea {
  min-height: 44px;
}

@media (max-width: 980px) {
  .container {
    padding: 22px 16px;
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-column: auto;
    min-height: 320px;
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .header {
    position: relative;
  }

  .nav {
    padding: 12px 14px;
    gap: 12px;
  }

  .logo {
    font-size: 15px;
    line-height: 1.35;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-actions .button,
  .nav-actions button {
    width: 100%;
    text-align: center;
    padding-inline: 12px;
  }

  .container {
    padding: 18px 12px;
  }

  .hero {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .hero p,
  .notice-body {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .panel,
  .card {
    padding: 18px;
    border-radius: 18px;
  }

  .grid,
  .form-grid,
  .profile-form .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-title-row,
  .form-actions,
  .row-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions > *,
  .row-actions > *,
  .button,
  button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .payment-result-panel {
    margin: 24px 12px;
  }

  .user-dialog {
    padding: 12px;
  }

  .user-dialog-card {
    width: 100%;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .user-dialog-card .dialog-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 28px;
  }

  .user-dialog-card h3 {
    font-size: 24px;
  }

  .user-dialog-card p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .nav-actions {
    grid-template-columns: 1fr;
  }

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

  th, td {
    padding: 9px 8px;
  }
}

/* Landing page v2: Bangladesh Society of Medicine official heading */
.landing-page-v2 {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.20), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.18), transparent 28rem),
    linear-gradient(135deg, #edfdf8 0%, #f8fbff 52%, #eef4ff 100%);
}

.site-header-v2 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  backdrop-filter: blur(18px);
}

.site-nav-v2 {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-v2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: #12343b;
}

.brand-mark-v2 {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 19px;
  color: #073b3a;
  background: linear-gradient(135deg, #76f2df, #d9efff);
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.20);
}

.brand-v2 strong {
  display: block;
  font-size: clamp(17px, 2.2vw, 25px);
  line-height: 1.15;
  color: #0f3e46;
}

.brand-v2 em {
  display: block;
  margin-top: 3px;
  color: #0f766e;
  font-size: clamp(12px, 1.5vw, 15px);
  font-style: normal;
  font-weight: 700;
}

.nav-actions-v2 .button {
  min-width: 106px;
  text-align: center;
}

.landing-shell-v2 {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 20px;
}

.landing-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hero-content-v2 {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 62px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.82), rgba(15, 118, 110, 0.88)),
    url('../img/medical-bg.svg');
  background-size: cover;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.hero-content-v2::before,
.hero-content-v2::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-content-v2::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-content-v2::after {
  width: 160px;
  height: 160px;
  left: 52%;
  bottom: -60px;
  background: rgba(20, 184, 166, 0.20);
}

.eyebrow-v2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #dffdf8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content-v2 h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content-v2 h1 span {
  display: block;
  margin-top: 18px;
  color: #bff7ef;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead-v2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions-v2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-primary-v2 {
  background: #f97316;
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.30);
}

.hero-secondary-v2 {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.notice-board-v2 {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(18px);
}

.notice-head-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
}

.notice-head-v2 span {
  color: #0f3e46;
  font-size: 24px;
  font-weight: 900;
}

.notice-head-v2 small {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: #dffdf8;
  font-weight: 900;
  white-space: nowrap;
}

.notice-board-v2 .notice-list {
  gap: 10px;
}

.notice-board-v2 .notice-list li {
  padding: 12px 0;
}

.notice-board-v2 .notice-list a {
  color: #12343b;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.notice-board-v2 .notice-list a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.landing-cards-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-card-v2 {
  min-height: 190px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.feature-icon-v2 {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  font-weight: 900;
}

.feature-card-v2 h2 {
  margin: 0 0 10px;
  color: #12343b;
  font-size: 22px;
}

.feature-card-v2 p {
  margin: 0;
  color: #60737a;
  line-height: 1.7;
}

.footer-v2 {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .landing-hero-v2 {
    grid-template-columns: 1fr;
  }

  .hero-content-v2 {
    min-height: auto;
  }

  .landing-cards-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-nav-v2 {
    width: min(100% - 24px, 1240px);
    min-height: auto;
    padding: 12px 0;
    align-items: stretch;
    flex-direction: column;
  }

  .brand-v2 {
    align-items: flex-start;
  }

  .brand-mark-v2 {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

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

  .landing-shell-v2 {
    width: min(100% - 24px, 1240px);
    padding-top: 18px;
  }

  .hero-content-v2,
  .notice-board-v2,
  .feature-card-v2 {
    border-radius: 22px;
  }

  .hero-content-v2 {
    padding: 28px 20px;
  }

  .hero-actions-v2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Landing update: official logo, QR placeholder, and revised society description */
.brand-logo-wrap-v2 {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(15, 118, 110, 0.16);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.20);
}

.brand-logo-v2 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.official-copy-v2 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-top: 30px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.official-copy-v2 h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.official-copy-v2 h2 a {
  color: #ffffff;
  text-decoration: none;
}

.official-copy-v2 h2 a:hover {
  text-decoration: underline;
}

.official-copy-v2 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}

.landing-qr-card-v2 {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(223, 253, 248, 0.92), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.landing-qr-title-v2 {
  display: block;
  color: #0f3e46;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}

.landing-qr-image-wrap-v2 {
  display: grid;
  width: min(230px, 72vw);
  height: min(230px, 72vw);
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: inset 0 0 0 8px rgba(240, 253, 250, 0.9);
}

.landing-qr-image-wrap-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.landing-qr-subtitle-v2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  padding: 4px 10px;
  color: #0f766e;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-qr-subtitle-v2:hover,
.landing-qr-subtitle-v2:focus-visible {
  color: #0f3e46;
  background: rgba(204, 251, 241, 0.85);
  outline: none;
}

.landing-qr-subtitle-v2.is-disabled {
  pointer-events: none;
  color: #60737a;
}

.admin-qr-preview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.admin-qr-preview-box {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}

.admin-qr-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 680px) {
  .brand-logo-wrap-v2 {
    width: 56px;
    height: 56px;
  }

  .landing-qr-card-v2,
  .admin-qr-preview-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .admin-qr-preview-box {
    width: 170px;
    height: 170px;
  }
}

/* Registration/login refinement - 2026-09-04 */
.auth-visual-card.no-mark { gap: 1rem; }
.auth-visual-card.no-mark h1 { margin-top: 0; }
.register-card-wide { max-width: 760px; }
.modern-register-form .form-grid { align-items: start; }
.input-prefix-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.input-prefix-group > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 0 .85rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, .12), rgba(59, 130, 246, .12));
  color: #0f4f4b;
  font-weight: 900;
  border-right: 1px solid rgba(15, 23, 42, .12);
}
.input-prefix-group input {
  border: 0 !important;
  border-radius: 0 !important;
  min-width: 0;
  flex: 1;
  box-shadow: none !important;
}
.auth-links a,
.sidebar-footer a { text-transform: none; }
@media (max-width: 720px) {
  .register-card-wide { max-width: 100%; }
  .upgraded-auth-shell .auth-panel-area { padding: 1rem; }
  .input-prefix-group > span { min-width: 48px; }
}

/* Landing hero title removal update: keeps the hero compact after the large headline is removed. */
.hero-content-v2 {
  min-height: 420px;
}
.hero-content-v2 .official-copy-v2 {
  margin-top: 24px;
}
@media (max-width: 900px) {
  .hero-content-v2 {
    min-height: auto;
  }
}
