@font-face {
  font-family: 'Nunito Sans';
  src: url('/fonts/nunito-sans-latin-var.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #221f1b;
  --cream: #f6f3eb;
  --cream-2: #f1ece0;
  --sand: #ece5d6;
  --sand-2: #dcd2bc;
  --taupe: #5d564c;
  --taupe-light: #8b8274;
  --line: #d9d0bd;
  --green: #0f6b4f;
  --green-dark: #0a4c37;
  --gold: #e0a02a;
  --white: #fffdf8;
  --shadow: 0 10px 30px -12px rgba(34, 31, 27, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(34, 31, 27, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --font: 'Nunito Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand__mark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand__mark span { color: var(--green); }
.brand__logo { height: 40px; width: auto; max-width: 220px; object-fit: contain; }
.brand__logo--footer { height: 48px; }
.brand__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-light);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--taupe);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover, .nav a.active { color: var(--green); border-color: var(--gold); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  border: none;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav { position: fixed; top: 62px; left: 0; right: 0; height: calc(100vh - 62px);
    background: var(--cream); flex-direction: column;
    padding: 28px 24px; gap: 18px; transform: translateY(-110%); transition: transform .25s ease;
    border-top: 1px solid var(--line); overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 18px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
    background: var(--white); cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ''; display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.03;
  margin: 14px 0 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p.lead {
  font-size: 17px;
  color: var(--taupe);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 800; font-size: 14.5px; letter-spacing: .01em;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--ink); }

.sub-nag-overlay {
  position: fixed; inset: 0; background: rgba(34, 31, 27, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; z-index: 1000;
}
.sub-nag-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px 28px; max-width: 380px; width: 100%; text-align: center;
}
.sub-nag-card h3 { font-size: 20px; font-weight: 900; margin: 0 0 10px; }
.sub-nag-card p { color: var(--taupe); font-size: 14.5px; margin: 0 0 24px; }
.sub-nag-actions { display: flex; flex-direction: column; gap: 10px; }
.sub-nag-actions .btn { justify-content: center; width: 100%; }

.hero__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 420px;
}
.hero__gallery img { width: 100%; height: 100%; object-fit: cover; }
.hero__gallery .g1 { grid-row: 1 / 3; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__gallery .g2 { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.hero__gallery .g3 { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.hero__badge {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--white); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 13px; color: var(--green-dark);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__gallery { height: 320px; margin-top: 8px; }
  .hero__badge { left: 8px; bottom: -14px; }
}

.info-strip {
  display: flex; flex-wrap: wrap; gap: 18px 34px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--taupe);
}
.info-strip strong { color: var(--ink); }
.info-strip .item { display: flex; align-items: center; gap: 8px; }
.info-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 8px; }
.section-head p { color: var(--taupe); max-width: 52ch; margin-top: 10px; }

.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark p { color: #cfc7b6; }

/* highlight / featured cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish-card__img { height: 190px; overflow: hidden; background: var(--sand); }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; }
.dish-card__body { padding: 18px 20px 22px; }
.dish-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.dish-card__top h3 { font-size: 17.5px; }
.dish-card__price { font-weight: 900; color: var(--green); white-space: nowrap; font-size: 15px; }
.dish-card__desc { margin-top: 8px; font-size: 13.6px; color: var(--taupe); }

/* ---------- menu page ---------- */
.menu-nav {
  position: sticky; top: 73px; z-index: 20;
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 14px 0; margin-bottom: 8px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.menu-nav a {
  font-size: 13.5px; font-weight: 800; padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--taupe);
}
.menu-nav a:hover, .menu-nav a.active { background: var(--green); color: var(--white); border-color: var(--green); }

.menu-category { padding: 46px 0; border-bottom: 1px dashed var(--line); scroll-margin-top: 130px; }
.menu-category:last-child { border-bottom: none; }
.menu-category__head { margin-bottom: 30px; }
.menu-category__head h2 { font-size: clamp(24px, 3.2vw, 34px); }
.menu-category__head .subtitle { color: var(--taupe-light); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-top: 4px; display:block; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; } }

.menu-row {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.menu-row__thumb { width: 66px; height: 66px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: var(--sand); }
.menu-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-row__thumb--empty { background: linear-gradient(135deg, var(--sand), var(--sand-2)); }
.menu-row__body { flex: 1; min-width: 0; }
.menu-row__top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.menu-row__top h4 { font-size: 16px; font-weight: 800; }
.menu-row__price { font-weight: 900; color: var(--green); font-size: 14.5px; white-space: nowrap; }
.menu-row__desc { font-size: 13.2px; color: var(--taupe); margin-top: 4px; }
.menu-row__desc .en { color: var(--taupe-light); font-style: italic; display: block; margin-top: 2px; }
.menu-row__note { font-size: 12.5px; color: var(--gold); font-weight: 700; margin-top: 4px; }
.badge-unavailable { display:inline-block; margin-left:8px; font-size:11px; font-weight:800; color:#b3452f; background:#f6e2db; padding:2px 8px; border-radius:999px; }

.promo-banner {
  margin: 44px 0; padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  text-decoration: none;
}
a.promo-banner[href] { cursor: pointer; transition: transform .15s ease; }
a.promo-banner[href]:hover { transform: translateY(-1px); }
.promo-banner strong { font-size: 17px; }
.promo-banner span { color: #d8f0e6; font-size: 13.5px; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
  color: #fff; font-size: 12.5px; font-weight: 700;
  opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; }
.gallery-filters { display:flex; gap:10px; margin-bottom: 26px; flex-wrap: wrap; }
.gallery-filters button {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
  font-weight: 800; font-size: 13px; color: var(--taupe); cursor: pointer;
}
.gallery-filters button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

body.lightbox-open { overflow: hidden; }
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(10, 9, 7, 0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; padding: 60px 80px;
}
.lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: var(--shadow); }
.lightbox-caption {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: #fff; font-size: 14.5px; font-weight: 600; padding: 0 80px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none;
  border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 24px; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 18px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-overlay { padding: 70px 16px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-caption { padding: 0 16px; }
}

/* WhatsApp menu ordering */
.order-control { margin-top: 10px; }
.order-add-btn {
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--green); color: var(--green);
  background: transparent; font-weight: 800; font-size: 12.5px; cursor: pointer; transition: background .15s ease, color .15s ease;
}
.order-add-btn:hover { background: var(--green); color: var(--white); }
.order-control__panel { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.order-qty { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 12px; }
.order-qty .qty-btn { background: none; border: none; font-size: 16px; font-weight: 800; cursor: pointer; color: var(--ink); width: 20px; line-height: 1; }
.order-qty .qty-value { min-width: 14px; text-align: center; font-weight: 800; font-size: 13.5px; }
.order-note {
  flex: 1; min-width: 140px; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 12.5px; font-family: inherit;
}
.order-remove-btn { background: none; border: none; color: var(--taupe-light); font-size: 20px; cursor: pointer; line-height: 1; }

.order-cart-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  border: none; box-shadow: var(--shadow); cursor: pointer; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.order-cart-btn__count {
  position: absolute; top: -4px; right: -4px; background: var(--ink); color: #fff;
  font-size: 11.5px; font-weight: 800; min-width: 20px; height: 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.order-cart-overlay {
  position: fixed; inset: 0; background: rgba(34, 31, 27, 0.55);
  display: flex; align-items: flex-end; justify-content: center; z-index: 1500; padding: 0;
}
@media (min-width: 640px) { .order-cart-overlay { align-items: center; padding: 24px; } }
.order-cart-panel {
  background: var(--white); width: 100%; max-width: 480px; max-height: 82vh; overflow-y: auto;
  border-radius: var(--radius) var(--radius) 0 0; padding: 26px 24px; box-shadow: var(--shadow);
}
@media (min-width: 640px) { .order-cart-panel { border-radius: var(--radius); } }
.order-cart-panel h3 { margin: 0 0 16px; font-size: 19px; font-weight: 900; }
.order-cart-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 12px 0; border-top: 1px solid var(--cream-2); }
.order-cart-row:first-of-type { border-top: none; }
.order-cart-row__info { flex: 1; }
.order-cart-row__name { font-weight: 800; font-size: 14.5px; }
.order-cart-row__note { font-size: 12.5px; color: var(--taupe); margin-top: 2px; }
.order-cart-row__price { font-size: 13px; color: var(--taupe); margin-top: 2px; }
.order-cart-row__remove { background: none; border: none; color: var(--taupe-light); cursor: pointer; font-size: 18px; flex-shrink: 0; }
.order-cart-empty { color: var(--taupe); text-align: center; padding: 24px 0; }
.order-cart-actions { display: flex; gap: 10px; margin-top: 20px; }
.order-cart-actions .btn { flex: 1; justify-content: center; }

/* ---------- about / contact ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-row { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.stat-row .stat b { font-size: 30px; display: block; color: var(--green); }
.stat-row .stat span { font-size: 12.5px; color: var(--taupe); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe-light); margin-bottom: 14px; }
.contact-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.contact-row:last-child { border-bottom: none; }
.contact-row span:first-child { color: var(--taupe); font-weight: 700; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #d9d3c4; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { font-size: 14px; color: #b9b2a0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-brand .brand__mark { color: #fff; }
.footer-brand .brand__mark span { color: var(--gold); }
.footer-brand p { margin-top: 12px; max-width: 34ch; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid #3a352c;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: #8b8274;
}

/* misc */
.empty-state { text-align: center; padding: 60px 20px; color: var(--taupe); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- language switcher ---------- */
.lang-switch { display: flex; gap: 4px; }
.lang-switch a {
  font-size: 11.5px; font-weight: 800; padding: 5px 8px; border-radius: 999px;
  color: var(--taupe); border: 1px solid var(--line);
}
.lang-switch a.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- RTL support ----------
   Flexbox/Grid layouts (nav, hero, footer, cards, contact, gallery grids…)
   already mirror automatically once dir="rtl" is set on <html> — only the
   few rules below use physical left/right values that don't. */
[dir="rtl"] .hero__badge { left: auto; right: -14px; }
@media (max-width: 900px) {
  [dir="rtl"] .hero__badge { left: auto; right: 8px; }
}
[dir="rtl"] .badge-unavailable { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .skip-link { left: auto; right: -999px; }
[dir="rtl"] .skip-link:focus { left: auto; right: 12px; }

/* ---------- custom page content (Editor.js blocks, views/site/page.ejs) ---------- */
.content-body { max-width: 900px; margin: 0 auto; font-size: 15.5px; color: var(--taupe); line-height: 1.8; }
.content-body > p, .content-body > h2, .content-body > h3, .content-body > ul, .content-body > ol { max-width: 74ch; }
.content-menuitems { margin: 32px 0; }
.content-body h2 { color: var(--ink); font-size: 26px; line-height: 1.3; margin: 32px 0 14px; }
.content-body h3 { color: var(--ink); font-size: 20px; line-height: 1.3; margin: 26px 0 12px; }
.content-body p { margin-bottom: 16px; }
.content-body img { max-width: 100%; border-radius: var(--radius-sm); }
.content-body ul, .content-body ol { margin: 0 0 16px 24px; }
[dir="rtl"] .content-body ul, [dir="rtl"] .content-body ol { margin: 0 24px 16px 0; }

.content-video { margin: 28px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/9; }
.content-video iframe, .content-video video { width: 100%; height: 100%; border: 0; display: block; }

.content-mediatext { display: flex; gap: 28px; align-items: center; margin: 32px 0; }
.content-mediatext--flip { flex-direction: row-reverse; }
.content-mediatext__media { flex: 1; min-width: 0; }
.content-mediatext__media img, .content-mediatext__media video { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; }
.content-mediatext__text { flex: 1; min-width: 0; }
@media (max-width: 700px) {
  .content-mediatext, .content-mediatext--flip { flex-direction: column; }
}
