:root {
  --mvv-maroon: #8a0038;
  --mvv-maroon-deep: #4a001f;
  --mvv-gold: #c98922;
  --mvv-cream: #fff9f3;
  --mvv-text: #311522;
  --mvv-muted: #7a5a64;
  --mvv-green: #2e7d32;
  --mvv-border: rgba(138, 0, 56, 0.14);
  --mvv-shadow: 0 18px 44px rgba(49, 21, 34, 0.12);
}

.mvv-page,
.mvv-page * {
  box-sizing: border-box;
}

.mvv-page {
  background: var(--mvv-cream);
  color: var(--mvv-text);
  overflow-x: clip;
  overflow-y: visible;
}

.mvv-page img {
  display: block;
  max-width: 100%;
}

body.lagnam-homepage .scroll-to-top2 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(250px, calc(100% - 36px));
  margin: 0;
  z-index: 4;
}

body.lagnam-homepage .tr-widget {
  width: 100%;
  min-width: 0;
  padding: 9px 11px;
  border-color: rgba(74, 0, 31, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(34, 0, 12, 0.16);
}

body.lagnam-homepage .tr-icon {
  width: 28px;
  height: 28px;
}

.mvv-page article,
.mvv-page section,
.mvv-page div,
.mvv-page li,
.mvv-page p,
.mvv-page h1,
.mvv-page h2,
.mvv-page h3 {
  min-width: 0;
}

.mvv-container {
  width: min(1500px, calc(100% - 64px));
  margin-inline: auto;
}

/* Homepage header: keep the shared header markup and behaviour, while balancing
   the wordmark, navigation, and account actions for this landing page. */
body.lagnam-homepage .navbar-outer {
  background: linear-gradient(105deg, #65050c 0%, #8d0711 52%, #68040b 100%);
  box-shadow: 0 5px 18px rgba(61, 0, 12, 0.2);
}

body.lagnam-homepage nav.navbar {
  min-height: 98px;
  padding: 8px 0;
}

body.lagnam-homepage nav.navbar > .container {
  width: min(1820px, calc(100% - 96px));
  max-width: none;
  padding-inline: 0;
}

body.lagnam-homepage .navbar-brand-wrap {
  width: clamp(270px, 19vw, 340px);
  max-width: none;
  padding-right: clamp(18px, 2vw, 28px);
  border-right: 0;
  gap: 0;
}

body.lagnam-homepage .brand-text {
  width: 100%;
}

body.lagnam-homepage .brand-text > img {
  width: 100% !important;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

body.lagnam-homepage .navbar-nav {
  gap: clamp(5px, 0.9vw, 18px) !important;
}

body.lagnam-homepage .nav-link {
  padding: 10px 12px !important;
  font-size: 0.96rem;
}

body.lagnam-homepage .nav-link[href="index"] {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 192, 74, 0.18);
}

body.lagnam-homepage .nav-link[href="index"]::after {
  width: 18px;
  height: 2px;
  bottom: 3px;
  border-radius: 2px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

body.lagnam-homepage .btn-nav-outline,
body.lagnam-homepage .btn-nav-primary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
}

.mvv-section {
  padding: clamp(8px, 8vw, 9px) 0;
}

.mvv-section.alt {
  background: linear-gradient(180deg, #fff, var(--mvv-cream));
}

.mvv-section-heading {
  margin: 0 auto 46px;
  text-align: center;
}

.mvv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--mvv-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mvv-eyebrow::before,
.mvv-eyebrow::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.65;
}

.mvv-title {
  margin: 0 0 14px;
  color: var(--mvv-maroon);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 1.6rem);
  line-height: 1.08;
}

.mvv-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--mvv-muted);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.8;
}

.mvv-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mvv-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.mvv-btn.primary {
  background: linear-gradient(135deg, var(--mvv-gold), #e6ae3d);
  box-shadow: 0 14px 30px rgba(201, 137, 34, 0.28);
  color: var(--mvv-maroon-deep);
}

.mvv-btn.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mvv-btn.maroon {
  background: linear-gradient(135deg, var(--mvv-maroon), var(--mvv-maroon-deep));
  box-shadow: 0 14px 30px rgba(138, 0, 56, 0.24);
  color: #fff;
}

.mvv-hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, calc(100vh - 98px), 820px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: url("../images/main-slider/lagnamwani-couple-hero-v2.jpg") center right / cover no-repeat;
  color: #fff;
}

.mvv-hero::before {
  content: none;
}

.mvv-hero-content {
  width: min(850px, 100%);
  padding: clamp(78px, 8vw, 112px) 0;
}

.mvv-hero h1 {
  margin: 0 0 24px;
  color: #fffaf4;
  font-family: "Playfair Display", serif;
  max-width: 780px;
  font-size: clamp(4rem, 5.4vw, 6.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.mvv-hero p {
  max-width: 780px;
  margin: 0 0 34px;
  color: rgba(255, 250, 244, 0.86);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}

.mvv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mvv-stats {
  display: grid;
  max-width: 850px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.mvv-stat {
  min-height: 146px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.mvv-stat strong,
.mvv-stat span {
  display: block;
}

.mvv-stat strong {
  color: var(--mvv-gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
}

.mvv-stat span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.mvv-search-card {
  position: relative;
  z-index: 3;
  margin: -42px 0 clamp(28px, 5vw, 56px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(201, 137, 34, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--mvv-shadow);
  backdrop-filter: blur(18px);
}

.mvv-search-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 14px;
}

.mvv-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--mvv-maroon);
  font-size: 0.84rem;
  font-weight: 800;
}

.mvv-field select,
.mvv-field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--mvv-border);
  border-radius: 8px;
  background: #fff;
  color: var(--mvv-text);
  outline: none;
}

.mvv-field select:focus,
.mvv-field input:focus {
  border-color: var(--mvv-gold);
  box-shadow: 0 0 0 3px rgba(201, 137, 34, 0.13);
}

.mvv-card-grid,
.mvv-profile-grid,
.mvv-plan-grid,
.mvv-story-grid,
.mvv-testimonial-grid {
  display: grid;
  gap: 22px;
}

.mvv-card-grid,
.mvv-profile-grid,
.mvv-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mvv-card,
.mvv-profile,
.mvv-plan,
.mvv-story {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mvv-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(49, 21, 34, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mvv-card:hover,
.mvv-profile:hover,
.mvv-plan:hover,
.mvv-story:hover {
  transform: translateY(-6px);
  box-shadow: var(--mvv-shadow);
}

.mvv-card {
  padding: 28px;
}

.mvv-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mvv-maroon), var(--mvv-gold));
  color: #fff;
  font-size: 1.3rem;
}

.mvv-card h3,
.mvv-profile h3,
.mvv-story h3,
.mvv-plan h3 {
  margin: 0 0 10px;
  color: var(--mvv-maroon);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.mvv-card p,
.mvv-profile p,
.mvv-story p,
.mvv-plan p {
  margin: 0 0 8px;
  color: var(--mvv-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.mvv-profile img,
.mvv-story img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}

.mvv-story img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.mvv-profile-body,
.mvv-story-body,
.mvv-plan-body {
  padding: 24px;
}

.mvv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--mvv-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mvv-plan {
  overflow: visible;
}

.mvv-plan.featured {
  border-color: var(--mvv-gold);
  transform: translateY(-10px);
}

.mvv-plan.featured:hover {
  transform: translateY(-15px);
}

.mvv-plan-ribbon {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--mvv-gold);
  color: var(--mvv-maroon-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mvv-price {
  margin-bottom: 10px;
  color: var(--mvv-maroon);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
}

.mvv-feature-list {
  min-height: 154px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.mvv-feature-list li {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--mvv-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.mvv-feature-list i {
  flex: 0 0 auto;
  color: var(--mvv-green);
}

.mvv-plan .mvv-btn {
  width: 100%;
}

.mvv-band {
  background:
    linear-gradient(135deg, rgba(74, 0, 31, 0.98), rgba(138, 0, 56, 0.94)),
    url("../images/icons/pattern-1.jpg");


background-size:cover;
background-position:center;
}

.mvv-band .mvv-section-heading {
  margin-bottom: 0;
}

.mvv-band .mvv-title,
.mvv-band .mvv-subtitle {
  color: #fff;
}

.mvv-band .mvv-subtitle {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.mvv-reveal {
  animation: mvv-reveal 0.7s ease forwards;
  opacity: 0;
  transform: translateY(18px);
}

.legacy-home {
  display: grid;
  gap: 32px;
  padding: clamp(54px, 7vw, 88px) 0;
}

.home-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--mvv-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(49, 21, 34, 0.08);
}

.home-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.home-section-title span,
.home-card-label {
  color: var(--mvv-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-section-title .community-partners-label {
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.home-section-title h2,
.home-info-card h2 {
  margin: 4px 0 0;
  color: var(--mvv-maroon);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.home-next,
.home-title-actions > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--mvv-border);
  border-radius: 999px;
  background: #fff;
  color: var(--mvv-maroon);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-next:hover,
.home-title-actions > a:hover {
  background: var(--mvv-maroon);
  color: #fff;
  transform: translateY(-2px);
}

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

.home-slider-shell {
  overflow: hidden;
  border-radius: 16px;
}

.home-ad-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
  touch-action: pan-y;
}

.home-ad-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.home-ad-slide {
  display: grid;
  min-height: 310px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff6eb, #fff);
}

.home-ad-slide img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-ad-slide > div {
  padding: clamp(26px, 5vw, 60px);
}

.home-ad-slide h3,
.home-profile-card h3 {
  margin: 8px 0 10px;
  color: var(--mvv-maroon);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.home-ad-slide p,
.home-info-card p,
.home-info-card li {
  color: var(--mvv-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.home-ad-slide a {
  color: var(--mvv-maroon);
  font-weight: 800;
  text-decoration: none;
}

.home-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-profile-card {
  overflow: hidden;
  border: 1px solid var(--mvv-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(49, 21, 34, 0.06);
}

.home-profile-card {
  position: relative;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}

.home-profile-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.home-profile-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 20px 18px;
  background: linear-gradient(transparent, rgba(49, 21, 34, 0.94));
}

.home-profile-overlay span {
  color: #f4c768;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-profile-card h3,
.home-profile-card p {
  color: #fff;
}

.home-profile-card p {
  margin: 0;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-info-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--mvv-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(49, 21, 34, 0.07);
}

.home-info-card h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.home-info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mvv-maroon), var(--mvv-gold));
  color: #fff;
  font-size: 1.2rem;
}

.home-info-card ul {
  margin: 0;
  padding-left: 20px;
}

.home-info-card li + li {
  margin-top: 8px;
}

.home-testimonial {
  display: none;
}

.home-testimonial.active {
  display: block;
  animation: mvv-reveal 0.4s ease forwards;
}

.home-testimonial strong {
  color: var(--mvv-maroon);
}

@keyframes mvv-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .mvv-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mvv-card-grid,
  .mvv-profile-grid,
  .mvv-plan-grid,
  .mvv-story-grid,
  .mvv-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1200px) and (max-width: 1360px) {
  body.lagnam-homepage nav.navbar > .container {
    width: min(1440px, calc(100% - 40px));
  }

  body.lagnam-homepage .navbar-brand-wrap {
    width: 225px;
    padding-right: 14px;
  }

  body.lagnam-homepage .brand-text > img {
    height: 64px;
  }

  body.lagnam-homepage .navbar-nav {
    gap: 0 !important;
  }

  body.lagnam-homepage .nav-link {
    padding-inline: 8px !important;
    font-size: 0.82rem;
  }

  body.lagnam-homepage .navbar-collapse > .d-flex {
    margin-left: 10px;
    gap: 7px !important;
  }

  body.lagnam-homepage .btn-nav-outline,
  body.lagnam-homepage .btn-nav-primary {
    padding-inline: 13px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1199.98px) {
  body.lagnam-homepage nav.navbar {
    min-height: 88px;
    padding: 7px 0;
  }

  body.lagnam-homepage nav.navbar > .container {
    width: min(100% - 40px, 1440px);
  }

  body.lagnam-homepage .navbar-brand-wrap {
    width: min(270px, calc(100vw - 100px));
    padding-right: 0;
    border-right: 0;
  }

  body.lagnam-homepage .brand-text > img {
    height: 68px;
  }

  body.lagnam-homepage .navbar-collapse {
    margin-top: 7px;
    padding: 12px;
    border: 1px solid rgba(240, 192, 74, 0.18);
    border-radius: 12px;
    background: rgba(65, 1, 9, 0.96);
    box-shadow: 0 14px 30px rgba(35, 0, 7, 0.24);
  }

  body.lagnam-homepage .navbar-nav {
    gap: 2px !important;
  }
}

@media (max-width: 780px) {
  .mvv-section {
    padding: 54px 0;
  }

  .mvv-hero {
    min-height: 680px;
    align-items: center;
    background: url("../images/main-slider/lagnamwani-couple-hero-v2.jpg") 70% center / cover no-repeat;
    background-color: var(--mvv-maroon-deep);
  }

  .mvv-hero-content {
    width: 100%;
    padding: 64px 0 56px;
  }

  .mvv-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 10vw, 4.25rem);
    letter-spacing: -0.025em;
  }

  .mvv-search-grid {
    grid-template-columns: 1fr;
  }

  .mvv-search-card {
    margin-top: 22px;
  }

  .mvv-plan.featured,
  .mvv-plan.featured:hover {
    transform: none;
  }

  .home-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-title-actions {
    justify-content: flex-start;
  }

  .home-ad-slide {
    grid-template-columns: 1fr;
  }

  .home-ad-slide img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .home-ad-slide > div {
    padding: 26px;
  }

  .home-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mvv-container {
    width: calc(100% - 24px);
  }

  .mvv-actions .mvv-btn {
    width: 100%;
  }

  body.lagnam-homepage nav.navbar {
    min-height: 78px;
  }

  body.lagnam-homepage nav.navbar > .container {
    width: calc(100% - 24px);
  }

  body.lagnam-homepage .navbar-brand-wrap {
    width: min(230px, calc(100vw - 82px));
  }

  body.lagnam-homepage .brand-text > img {
    height: 58px;
  }

  body.lagnam-homepage .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  body.lagnam-homepage .scroll-to-top2 {
    right: 12px;
    bottom: 12px;
    width: min(218px, calc(100% - 24px));
  }

  body.lagnam-homepage .tr-widget {
    gap: 8px;
    padding: 8px 10px;
  }

  body.lagnam-homepage .tr-widget .tr-divider,
  body.lagnam-homepage .tr-widget > div:last-child {
    display: none;
  }

  .mvv-hero {
    min-height: 660px;
    background-position: 69% center;
  }

  .mvv-hero-content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 52px 0 48px;
  }

  .mvv-hero-content > p,
  .mvv-actions,
  .mvv-stats {
    width: 100%;
    max-width: 100%;
  }

  .mvv-actions,
  .mvv-stats {
    min-width: 0;
    overflow: hidden;
  }

  .mvv-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mvv-section {
    padding: 44px 0;
  }

  .mvv-title {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .mvv-eyebrow {
    gap: 7px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .mvv-eyebrow::before,
  .mvv-eyebrow::after {
    width: 20px;
  }

  .mvv-card-grid,
  .mvv-profile-grid,
  .mvv-plan-grid,
  .mvv-story-grid,
  .mvv-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .mvv-stat {
    min-width: 0;
    min-height: 78px;
    padding: 12px 10px;
    overflow: hidden;
  }

  .mvv-stat strong {
    font-size: 1.45rem;
  }

  .mvv-stat span {
    font-size: 0.7rem;
  }

  .mvv-card,
  .mvv-profile-body,
  .mvv-story-body,
  .mvv-plan-body,
  .home-info-card {
    padding: 20px;
  }

  .mvv-feature-list {
    min-height: 0;
  }

  .mvv-plan-ribbon {
    right: 14px;
  }

  .legacy-home {
    gap: 20px;
    padding-top: 34px;
  }

  .home-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .home-section-title h2,
  .home-info-card h2 {
    font-size: 1.55rem;
  }

  .home-section-title .community-partners-label {
    font-size: 0.86rem;
  }

  .home-ad-slide {
    min-height: 0;
  }

  .home-ad-slide img {
    height: auto;
    min-height: 0;
  }

  .home-ad-slide > div {
    padding: 20px;
  }

  .home-ad-slide h3 {
    font-size: 1.35rem;
  }

  .home-info-card {
    min-height: 0;
  }

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

  .home-title-actions,
  .home-title-actions > a,
  .home-next {
    width: 100%;
  }

  .mvv-section-heading {
    margin-bottom: 32px;
  }
}

@media (max-width: 360px) {
  .mvv-container {
    width: calc(100% - 24px);
  }

  .mvv-hero-content {
    padding-inline: 6px;
  }

  .mvv-hero h1 {
    font-size: 2.5rem;
  }

  .home-panel,
  .mvv-card,
  .mvv-profile-body,
  .mvv-story-body,
  .mvv-plan-body,
  .home-info-card {
    padding: 16px;
  }
}
