:root {
  --navy: #182f62;
  --navy-dark: #0d1c3f;
  --navy-soft: #2e477d;
  --gold: #d6c3a5;
  --gold-deep: #bda27a;
  --cream: #f7f4ee;
  --cream-dark: #ece6da;
  --ink: #20304a;
  --text: #314158;
  --muted: #6d7687;
  --white: #ffffff;
  --border: rgba(24, 47, 98, 0.12);
  --shadow: 0 24px 60px rgba(17, 29, 57, 0.1);
  --shadow-soft: 0 16px 40px rgba(17, 29, 57, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100% - 48px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge {
  color: var(--gold);
  background: rgba(214, 195, 165, 0.08);
  border: 1px solid rgba(214, 195, 165, 0.28);
}

.eyebrow {
  color: var(--gold-deep);
  background: rgba(214, 195, 165, 0.16);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--navy-dark);
  background: linear-gradient(135deg, #ece2d2, #d6c3a5);
  box-shadow: var(--shadow-soft);
}

.button--navy {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: var(--shadow-soft);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.button--soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.button--full {
  width: 100%;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 47, 98, 0.08);
}

.site-header--home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

.site-header--home.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
  border-bottom-color: rgba(24, 47, 98, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.site-logo {
  flex-shrink: 0;
}

.logo {
  height: 62px;
  width: auto;
}

.logo--light {
  display: block;
}

.logo--dark {
  display: none;
}

.site-header--home.is-scrolled .logo--light,
.site-header:not(.site-header--home) .logo--light {
  display: none;
}

.site-header--home.is-scrolled .logo--dark,
.site-header:not(.site-header--home) .logo--dark,
.logo--dark.is-visible {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
}

.site-header--home .main-nav a,
.site-header--home .site-header__phone {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--home.is-scrolled .main-nav a,
.site-header--home.is-scrolled .site-header__phone,
.site-header:not(.site-header--home) .main-nav a,
.site-header:not(.site-header--home) .site-header__phone {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__phone {
  font-weight: 700;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.menu-toggle--dark {
  color: var(--ink);
  border-color: rgba(24, 47, 98, 0.18);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(10, 18, 38, 0.55);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__panel {
  margin-left: auto;
  width: min(320px, 88vw);
  height: 100%;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu__top img {
  height: 54px;
  width: auto;
}

.menu-close {
  font-size: 2rem;
  color: var(--white);
}

.mobile-menu__nav {
  display: grid;
  gap: 14px;
}

.mobile-menu__nav a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.15rem;
  font-weight: 700;
}

.mobile-menu__contact {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background: linear-gradient(95deg, rgba(13, 28, 63, 0.96), rgba(24, 47, 98, 0.84), rgba(24, 47, 98, 0.55));
}

.hero__top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ece2d2, #d6c3a5);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  color: var(--white);
}

.hero__content h1,
.hero__content p {
  color: var(--white);
}

.hero__text {
  max-width: 720px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin: 36px 0 46px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 780px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  padding: calc(var(--header-height) + 72px) 0 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.page-hero--light {
  background: linear-gradient(180deg, #ece6da, #f7f4ee);
}

.page-hero__content {
  max-width: 760px;
  text-align: center;
  color: var(--white);
}

.page-hero__content--left {
  text-align: left;
  color: var(--ink);
}

.page-hero__content h1,
.page-hero__content p {
  color: inherit;
}

.section {
  padding: 108px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(236, 230, 218, 0.55), rgba(247, 244, 238, 0.95));
}

.section--navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
  color: var(--muted);
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading--light .eyebrow {
  color: var(--gold);
  background: rgba(214, 195, 165, 0.1);
}

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

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

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

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

.service-card,
.value-card,
.team-card,
.stat-card,
.contact-card,
.form-card,
.legal-card,
.timeline-step {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.value-card,
.team-card,
.stat-card,
.contact-card,
.form-card,
.legal-card {
  padding: 30px;
}

.service-card {
  height: 100%;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold-deep);
  background: rgba(214, 195, 165, 0.18);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.feature-list li,
.check-grid div,
.icon-list div {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before,
.check-grid div::before,
.icon-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

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

.split-layout--center {
  align-items: center;
}

.split-layout--reverse > :first-child {
  order: 2;
}

.split-layout--reverse > :last-child {
  order: 1;
}

.check-grid,
.icon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 30px 0;
}

.stacked-cards {
  display: grid;
  gap: 18px;
}

.quote-card {
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.25;
}

.quote-card__author {
  display: grid;
  gap: 4px;
}

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

.timeline-step {
  position: relative;
  text-align: center;
  padding: 30px 22px;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), #f3eadb);
  font-weight: 700;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.testimonial-track {
  position: relative;
  min-height: 360px;
}

.testimonial {
  display: none;
  padding: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.testimonial.is-active {
  display: block;
}

.testimonial blockquote {
  margin: 18px 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.18;
  color: var(--white);
}

.testimonial__meta {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.3em;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.8rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.media-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 34px;
}

.process-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 16px;
}

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

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

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold-deep);
}

.team-card {
  text-align: center;
}

.team-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-weight: 700;
}

.team-card__avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.location-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.location-banner__media,
.location-banner__overlay {
  position: absolute;
  inset: 0;
}

.location-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-banner__overlay {
  background: rgba(13, 28, 63, 0.84);
}

.location-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.location-banner__content h2,
.location-banner__content p,
.location-banner__content a,
.location-banner__content strong,
.location-banner__content span {
  color: inherit;
}

.location-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.location-list div {
  display: grid;
  gap: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 28px;
}

.contact-list,
.legal-block,
.legal-stack {
  display: grid;
  gap: 20px;
}

.contact-list strong,
.legal-block h3 {
  color: var(--ink);
}

.form-card form {
  display: grid;
  gap: 20px;
}

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

.form-card label {
  display: grid;
  gap: 8px;
}

.form-card span {
  font-weight: 700;
  color: var(--ink);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 47, 98, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  padding: 0;
}

.checkbox span {
  font-weight: 400;
  color: var(--muted);
}

.checkbox a {
  color: var(--navy);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.direct-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.direct-call h2,
.direct-call p {
  color: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.legal-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-article {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.legal-article h2 {
  margin-top: 36px;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.legal-article h3 {
  margin-top: 24px;
  font-size: 1.55rem;
}

.legal-article ul {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.legal-article address {
  font-style: normal;
  margin-bottom: 18px;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding: 72px 0 32px;
}

.site-footer__logo {
  height: 70px;
  width: auto;
  margin-bottom: 22px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--gold);
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom--single {
  padding-top: 30px;
}

.site-footer__bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__bottom button {
  padding: 0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: var(--shadow);
}

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

.cookie-banner__content {
  display: grid;
  gap: 18px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__actions .button {
  min-height: 46px;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(7, 12, 25, 0.58);
}

.cookie-settings.is-open {
  display: grid;
  place-items: center;
}

.cookie-settings__panel {
  width: min(640px, calc(100% - 32px));
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.cookie-settings__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.cookie-settings__options {
  display: grid;
  gap: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.cookie-option__text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ece6da, #f7f4ee);
}

.not-found__wrap {
  width: 100%;
  padding: 24px;
}

.not-found__card {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .site-header__phone,
  .site-header__actions > .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .card-grid--four,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout,
  .legal-layout,
  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse > :first-child,
  .split-layout--reverse > :last-child {
    order: initial;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 1200px);
    --header-height: 82px;
  }

  .section {
    padding: 82px 0;
  }

  .hero__stats,
  .card-grid--three,
  .card-grid--two,
  .stats-grid,
  .form-grid,
  .check-grid,
  .icon-list,
  .footer-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-bottom: 64px;
  }

  .cta-banner,
  .direct-call,
  .site-footer__bottom,
  .testimonial-slider {
    grid-template-columns: 1fr;
    display: grid;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-track {
    min-height: auto;
  }

  .contact-layout {
    gap: 20px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .site-header__inner {
    min-height: 82px;
  }

  .logo {
    height: 52px;
  }

  .media-card img {
    min-height: 320px;
  }
}
