/*
Theme Name: Luger Gastro Marketing
Theme URI: https://lugermarketing.at
Author: Luger Gastro Marketing
Author URI: https://lugermarketing.at
Description: Eigenes, schlankes Theme für die Website von Luger Gastro Marketing – Reinweiß-Design, Hero mit Testimonial, Video-Showcase und Paket-Konfigurator.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: luger-gastro-marketing
*/

:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-card-2: #f6f6f6;
  --border: #e4e4e4;
  --red: #e23b30;
  --red-dark: #c22d24;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --radius: 22px;
  --nav-h: 76px;
}

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

[hidden] { display: none !important; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

.container { width: min(1440px, 94vw); margin: 0 auto; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  width: min(1120px, 92%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; white-space: nowrap; }
.logo span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a.nav-link {
  position: relative; font-weight: 600; color: var(--muted);
  padding: 6px 0; transition: color .25s;
}
.nav-links a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--text); }
.nav-links a.nav-link:hover::after, .nav-links a.nav-link.active::after { transform: scaleX(1); }

.btn {
  display: inline-block; border: none; cursor: pointer;
  background: var(--red); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .15s ease, background .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(226, 59, 48, .3); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn.small { padding: 10px 20px; font-size: .92rem; }
.btn.ghost {
  background: transparent; border: 1px solid var(--border); color: var(--text);
}
.btn.ghost:hover { border-color: var(--red); background: rgba(226, 59, 48, .06); box-shadow: none; }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 22px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
main { padding-top: var(--nav-h); }
section { padding: 96px 0; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: 1.4rem; }

.lead { color: var(--muted); font-size: 1.15rem; max-width: 560px; }

.accent-line { width: 72px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 22px; }
.accent-line.center { margin-left: auto; margin-right: auto; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: visible;
  padding: 32px 0 60px;
  background:
    radial-gradient(1000px 500px at 80% 10%, rgba(226, 59, 48, .08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 48px; align-items: center;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-header { display: block; }
.hero p.lead { margin: 26px 0 34px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; padding: 12px 22px;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: .95rem;
  background: var(--bg-card-2);
}
.hero-badge .star { color: var(--red); }
.hero-badge strong { color: var(--red); font-size: 1.2em; font-weight: 800; }

/* Kleines rundes Foto neben der Überschrift – nur auf Handy sichtbar */
.hero-photo-mobile { display: none; }

/* Drei Feature-Kacheln unterhalb des CTA */
.hero-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 52px; max-width: 600px;
}
.hero-feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(226, 59, 48, .08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.hero-feature-icon svg { width: 26px; height: 26px; }
.hero-feature h3 { font-size: 1.1rem; margin-bottom: 7px; letter-spacing: -0.01em; }
.hero-feature p { font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* Foto in organischer Blob-Form + Testimonial-Karte */
.hero-visual { position: relative; width: 100%; min-width: 0; }
.hero-photo {
  aspect-ratio: 1 / 1; width: 100%; max-width: 620px; margin: 0 auto;
  border-radius: 44% 56% 61% 39% / 51% 44% 56% 49%;
  background: url("assets/hero.jpg") center 18% / cover no-repeat;
  box-shadow: 0 30px 70px rgba(0,0,0,.09);
}
.hero-testimonial {
  position: absolute; right: 6%; bottom: -8%; z-index: 2;
  width: min(230px, 66%);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.1);
}
.hero-testimonial .quote-mark {
  display: block; font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem; line-height: 1; color: var(--red); margin-bottom: 2px;
}
.hero-testimonial p {
  font-size: .8rem; line-height: 1.45; color: var(--text);
  margin-bottom: 10px;
}
.hero-testimonial-author { display: flex; align-items: center; gap: 10px; }
.hero-testimonial-author .avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(226, 59, 48, .1); color: var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .64rem; font-weight: 800; overflow: hidden;
}
.hero-testimonial-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-testimonial-author strong { display: block; font-size: .78rem; }
.hero-testimonial-author span { font-size: .68rem; color: var(--muted); }

/* Zweite Testimonial-Instanz, nur auf Handy sichtbar (siehe hero-header weiter unten) */
.hero-testimonial-mobile { display: none; position: static; width: 100%; margin-top: 24px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: none; }
  .hero-features { max-width: none; }

  /* Ab Tablet-Breite: kleines rundes Foto neben der Überschrift statt großem Foto darüber/darunter */
  .hero-visual { display: none; }
  .hero-header { display: flex; align-items: flex-start; gap: 20px; }
  .hero-header h1 { flex: 1; min-width: 0; font-size: clamp(1.9rem, 5.2vw, 3.2rem); }
  .hero-photo-mobile {
    display: block; flex-shrink: 0;
    width: 26vw; max-width: 220px; aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: url("assets/hero.jpg") center 20% / cover no-repeat;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }

  .hero-testimonial-mobile { display: block; }
}
@media (max-width: 700px) {
  .container { width: 86vw; }
  .hero { padding: 40px 0 76px; }

  .hero-header { gap: 14px; }
  .hero-photo-mobile { width: 30vw; max-width: 130px; box-shadow: 0 14px 30px rgba(0,0,0,.12); }

  /* Badge kompakter, damit sie als Pille bleibt statt in 3 Zeilen umzubrechen */
  .hero-badge { font-size: .82rem; padding: 10px 16px; gap: 8px; }

  /* Feature-Kacheln als eigene Karten, volle Breite */
  .hero-features { grid-template-columns: 1fr; gap: 16px; max-width: none; margin-top: 32px; }
  .hero-feature {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 18px; padding: 22px;
  }

  /* Testimonial: Desktop-Instanz aus, mobile Instanz nach den Feature-Kacheln zeigen */
  .hero-testimonial-mobile { display: block; }
}

/* ---------- Ergebnis / Counter ---------- */
.ergebnis-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 64px; align-items: center;
}
.ergebnis-video {
  aspect-ratio: 9 / 16; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
}
.ergebnis-video iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
  .ergebnis-grid { grid-template-columns: 1fr; gap: 40px; }
  .ergebnis-video { max-width: 340px; margin: 0 auto; }
}

.stat-label { font-weight: 700; font-size: 1.25rem; margin-bottom: 4px; }
.stat-number {
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-sub { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin: 14px 0 22px; }
.stat-sub .num { font-variant-numeric: tabular-nums; }
.ergebnis .lead { max-width: 480px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }
.card h2 { margin-bottom: 20px; }
.card p { color: var(--muted); font-size: 1.08rem; }

.big-card { max-width: 720px; margin: 0 auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.step { padding: 34px; }
.step .num { color: var(--red); font-weight: 800; letter-spacing: .08em; margin-bottom: 12px; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 1rem; }

/* ---------- Pakete ---------- */
.pakete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.paket { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 38px 34px; }
.paket.featured { border-color: var(--red); box-shadow: 0 16px 36px rgba(226,59,48,.08); }
.paket .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: .8rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.paket h3 { font-size: 1.5rem; }
.paket .fuer-wen { font-style: italic; color: var(--muted); font-size: .98rem; min-height: 3em; }
.paket .preis { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.paket ul { list-style: none; display: grid; gap: 10px; }
.paket ul li { color: var(--muted); padding-left: 26px; position: relative; font-size: .99rem; }
.paket ul li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.paket .gratis {
  border: 1px solid var(--red); color: var(--red-dark); text-align: center;
  font-weight: 700; font-size: .92rem;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(226, 59, 48, .07);
}
.paket .btn { margin-top: auto; }
.paket .kurzbeschreibung { min-height: 4.5em; }

.teaser-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 44px; }
.link-mehr { color: var(--muted); font-weight: 700; transition: color .2s; }
.link-mehr:hover { color: var(--text); }

/* ---------- Zusatzbausteine ---------- */
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.addon h3 { font-size: 1.7rem; margin-bottom: 14px; }
.addon h3 span { color: var(--red); }
.addon p { margin-bottom: 20px; }
.addon .preise { display: grid; gap: 10px; font-weight: 700; color: var(--text); }

/* ---------- Konfigurator ---------- */
.konfigurator { border-color: var(--red); }
.konfigurator h2 { margin-bottom: 8px; }
.konfigurator > p { margin-bottom: 30px; }
.konfig-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

.konfig-options .gruppe { margin-bottom: 26px; }
.konfig-options .gruppe-label {
  font-weight: 700; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 12px;
}
.paket-radios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.paket-radios label {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 10px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.paket-radios label:hover { border-color: #c7c7c7; }
.paket-radios input { display: none; }
.paket-radios label.selected { border-color: var(--red); background: rgba(226, 59, 48, .07); }
.paket-radios .p-name { font-weight: 800; display: block; }
.paket-radios .p-preis { color: var(--muted); font-size: .85rem; }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 18px; cursor: pointer; margin-bottom: 10px;
  transition: border-color .2s, background .2s;
}
.toggle-row:hover { border-color: #c7c7c7; }
.toggle-row.selected { border-color: var(--red); background: rgba(226, 59, 48, .05); }
.toggle-row input { display: none; }
.toggle-row .t-text b { display: block; }
.toggle-row .t-text small { color: var(--muted); }
.toggle-row .t-preis { font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }

.konfig-summary {
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.konfig-summary .zeile {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; color: var(--muted); font-size: .98rem;
  border-bottom: 1px dashed var(--border);
}
.konfig-summary .zeile span:last-child { font-variant-numeric: tabular-nums; color: var(--text); font-weight: 600; }
.konfig-summary .gesamt {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 6px; font-weight: 800; font-size: 1.15rem;
}
.konfig-summary .gesamt .betrag { font-size: 2.1rem; color: var(--red); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.konfig-summary .hinweis { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }
.konfig-summary .gratis-hinweis {
  border: 1px solid var(--red); border-radius: 12px;
  background: rgba(226,59,48,.07); color: var(--red-dark);
  font-size: .9rem; font-weight: 600; text-align: center;
  padding: 10px 14px; margin-bottom: 18px;
}
.konfig-summary .btn { width: 100%; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.team-card { padding: 22px 22px 30px; text-align: left; }
.team-photo {
  aspect-ratio: 4 / 4.6; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(320px 320px at 70% 30%, rgba(226, 59, 48, .16), transparent 70%),
    linear-gradient(160deg, #f2f2f2 0%, #e6e6e6 90%);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo .initialen {
  font-size: 3.4rem; font-weight: 900; color: rgba(0,0,0,.2); letter-spacing: .04em;
}
.team-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.team-card .rolle { font-weight: 700; font-size: .95rem; margin-bottom: 12px; color: var(--red-dark); }
.team-card p { font-size: .99rem; }

/* ---------- Arbeit / Videos ---------- */
.arbeit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 48px; }
.video-slot {
  aspect-ratio: 9 / 16; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; position: relative;
  background: linear-gradient(160deg, #f7f7f7, #ececec);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 600;
  transition: border-color .3s;
}
.video-slot:hover { border-color: var(--red); }
.video-slot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-slot video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.video-slot .play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(226, 59, 48, .9); display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.video-slot .play::after {
  content: ""; margin-left: 4px;
  border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.video-slot .slot-inner { display: flex; flex-direction: column; align-items: center; padding: 20px; text-align: center; }
.swipe-hint { display: none; color: var(--muted); font-size: .9rem; margin-top: 18px; }

/* ---------- CTA ---------- */
.cta-final { text-align: center; }
.cta-final .lead { margin: 22px auto 36px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 40px; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { margin-bottom: 14px; font-size: 1rem; }
.footer-grid ul { list-style: none; display: grid; gap: 8px; }
.footer-grid a, .footer-grid li { color: var(--muted); font-size: .97rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand { font-weight: 800; font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand span { color: var(--red); }
.footer-legal { display: flex; gap: 18px; margin-top: 6px; }
.footer-watermark {
  margin-top: 60px; text-align: center;
  font-size: clamp(1.6rem, 6vw, 3.2rem); font-weight: 900; letter-spacing: .02em;
  color: rgba(0,0,0,.045); user-select: none;
}
.footer-watermark span { color: rgba(226, 59, 48, .2); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .steps, .pakete-grid, .team-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .konfig-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .konfig-summary { position: static; }
  .paket .fuer-wen, .paket .kurzbeschreibung { min-height: 0; }

  .burger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 10px 6vw 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; }
  .nav-links .btn { margin-top: 10px; }
}

/* Handy: Videos als Social-Media-Karussell (ein Video fast bildschirmfüllend, seitlich wischen) */
@media (max-width: 700px) {
  .arbeit-grid {
    display: flex; gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* über die Container-Ränder hinaus bis an die Bildschirmkante */
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    padding: 6px max(4vw, calc(50vw - (74vh * 9 / 32)));
    scrollbar-width: none;
  }
  .arbeit-grid::-webkit-scrollbar { display: none; }
  .arbeit-grid .video-slot {
    flex: 0 0 auto;
    width: min(92vw, calc(74vh * 9 / 16));
    scroll-snap-align: center;
  }
  .swipe-hint { display: block; }
}

/* ---------- Einfacher Seiteninhalt (Impressum, Datenschutz, the_content) ---------- */
.page-content { color: var(--text); font-size: 1.05rem; }
.page-content h2, .page-content h3 { margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; color: var(--muted); }
.page-content ul, .page-content ol { margin: 0 0 16px 1.2em; color: var(--muted); }
.page-content a { color: var(--red); text-decoration: underline; }

/* ---------- WordPress-Kernklassen (Bilder/Bildunterschriften/Ausrichtung) ---------- */
.alignleft { float: left; margin: 0 24px 12px 0; }
.alignright { float: right; margin: 0 0 12px 24px; }
.aligncenter { display: block; margin: 0 auto 12px; }
.wp-caption, .wp-block-image { max-width: 100%; }
.screen-reader-text { position: absolute !important; left: -9999px; }
