:root {
  --ink: #16211f;
  --muted: #61706c;
  --paper: #fffdf7;
  --soft: #f2efe6;
  --line: rgba(22, 33, 31, 0.14);
  --blue: #126c8a;
  --teal: #0b8a78;
  --coral: #df6951;
  --sun: #f2b84b;
  --leaf: #506f3d;
  --shadow: 0 18px 50px rgba(22, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 10px 30px rgba(22, 33, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: min(238px, 54vw);
  height: 52px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(22, 33, 31, 0.16);
  background: #fffdf7 url("assets/logo-argeles.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 12px;
  color: currentColor;
  opacity: 0.76;
}

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

.main-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 26, 29, 0.78), rgba(9, 26, 29, 0.38) 45%, rgba(9, 26, 29, 0.08)),
    linear-gradient(0deg, rgba(9, 26, 29, 0.62), rgba(9, 26, 29, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd27a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 670px;
  font-size: clamp(18px, 2vw, 25px);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.feed-tools,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.chip,
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.button {
  gap: 9px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--sun);
  color: #17211e;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button.secondary-light {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.button.secondary-light {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(9, 26, 29, 0.2);
}

.metric {
  display: block;
  font-size: 30px;
  font-weight: 950;
  color: #ffd27a;
}

.quickbar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quickbar a {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.quickbar a:hover {
  background: var(--soft);
}

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.partner-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.partner-strip span {
  color: rgba(255, 255, 255, 0.74);
}

.partner-strip a {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 10px 13px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 950;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro,
.split,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.commerce-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

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

.intro-grid article,
.listing-card,
.activity-card,
.event-item,
.contact-grid article,
.news-card,
.spotlight-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 33, 31, 0.05);
}

.intro-grid article {
  min-height: 210px;
  padding: 22px;
}

.intro-grid p,
.listing-card p,
.activity-card p,
.event-item p,
.contact-grid p,
.news-card p,
.spotlight-grid p {
  color: var(--muted);
}

.split {
  background: #f7f6ee;
}

.chip,
.tab {
  padding: 9px 13px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.chip.active,
.tab.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.news-stack {
  display: grid;
  gap: 12px;
}

.news-card {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.news-card time,
.tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

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

.listing-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 360px;
  overflow: hidden;
}

.listing-visual {
  display: flex;
  align-items: flex-end;
  min-height: 118px;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.listing-visual span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.listing-visual.campings {
  background: linear-gradient(135deg, #506f3d, #0b8a78);
}

.listing-visual.activiteiten {
  background: linear-gradient(135deg, #126c8a, #df6951);
}

.listing-visual.winkels {
  background: linear-gradient(135deg, #df6951, #f2b84b);
}

.listing-visual.restaurants {
  background: linear-gradient(135deg, #8f3f33, #df6951);
}

.listing-visual.stranden {
  background: linear-gradient(135deg, #126c8a, #67b7c8);
}

.listing-visual.hotspots {
  background: linear-gradient(135deg, #253f52, #506f3d);
}

.listing-visual.markten {
  background: linear-gradient(135deg, #8f3f33, #f2b84b);
}

.listing-visual.praktisch {
  background: linear-gradient(135deg, #16211f, #61706c);
}

.listing-body,
.listing-meta,
.listing-footer {
  padding: 18px;
}

.listing-meta {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.listing-meta span {
  color: var(--ink);
  font-weight: 900;
}

.listing-meta small {
  color: var(--muted);
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.listing-footer span {
  color: var(--muted);
  font-size: 13px;
}

.text-link,
.listing-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 950;
}

.activities {
  background: #fff;
}

.activity-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.activity-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 20px;
  border-top: 6px solid var(--coral);
}

.activity-card:nth-child(2n) {
  border-top-color: var(--blue);
}

.activity-card:nth-child(3n) {
  border-top-color: var(--leaf);
}

.activity-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
}

.calendar {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(26px, 5vw, 72px);
  background: var(--soft);
}

.routes {
  background: #f7f6ee;
}

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

.spotlight-grid article {
  min-height: 230px;
  padding: 22px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 18px;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-weight: 950;
}

.contact-panel {
  color: #fff;
  background: #16211f;
}

.sources {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  background: #fff;
}

.sources p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

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

.source-list a {
  display: flex;
  align-items: center;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
}

.region-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  background: #fff;
}

.region-story p {
  color: var(--muted);
  font-size: 18px;
}

.story-panel {
  display: grid;
  gap: 14px;
}

.story-panel article {
  border-left: 4px solid var(--coral);
  padding: 18px 20px;
  background: var(--soft);
}

.story-panel article:nth-child(2) {
  border-left-color: var(--blue);
}

.story-panel article:nth-child(3) {
  border-left-color: var(--leaf);
}

.contact-panel .eyebrow {
  color: #ffd27a;
}

.commerce-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.contact-grid article {
  padding: 22px;
  color: var(--ink);
}

.contact-grid .featured-plan {
  color: #fff;
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-12px);
}

.contact-grid .featured-plan p {
  color: rgba(255, 255, 255, 0.8);
}

.plan {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-plan .plan {
  color: #ffd27a;
}

.detail-page {
  background: var(--paper);
}

.detail-page h1,
.overview-main h1 {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.detail-page h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.detail-topbar .brand {
  min-width: 220px;
  color: var(--ink);
}

.detail-topbar .brand-logo {
  width: min(238px, 54vw);
  height: 52px;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 900;
}

.detail-nav a {
  border-radius: 8px;
  padding: 9px 11px;
  background: var(--soft);
  font-size: 14px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #f7f6ee, #fffdf7);
}

.detail-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.detail-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 60px);
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 108px);
}

.detail-main,
.detail-aside > div,
.overview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 33, 31, 0.05);
}

.detail-main {
  padding: clamp(24px, 4vw, 44px);
  max-width: 920px;
}

.detail-main h2:not(:first-of-type) {
  margin-top: 34px;
}

.detail-main p,
.detail-list {
  color: var(--muted);
  font-size: 18px;
}

.detail-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.detail-aside {
  display: grid;
  align-content: start;
  gap: 14px;
}

.detail-aside > div {
  padding: 22px;
}

.detail-aside p {
  color: var(--muted);
}

.overview-main {
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.overview-header {
  max-width: 880px;
  margin-bottom: 28px;
}

.overview-header p {
  color: var(--muted);
  font-size: 20px;
}

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

.overview-card {
  overflow: hidden;
}

.overview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.overview-card div {
  padding: 18px;
}

.overview-card p {
  color: var(--muted);
}

.frame-page {
  height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.frame-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 10px clamp(14px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 10px 24px rgba(22, 33, 31, 0.08);
}

.frame-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.frame-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.frame-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}

.frame-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.frame-shell {
  height: calc(100vh - 76px);
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
}

.frame-fallback {
  padding: 10px clamp(14px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: #f7f6ee;
  color: var(--muted);
  font-size: 14px;
}

.frame-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.guide-page {
  background: var(--paper);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background: #f7f6ee;
}

.guide-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-hero h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.guide-hero p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 21px;
}

.guide-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.guide-intro article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.guide-intro p {
  color: var(--muted);
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 900px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.guide-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 33, 31, 0.05);
}

.guide-toc strong {
  margin-bottom: 4px;
}

.guide-toc a {
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--blue);
  background: var(--soft);
  font-weight: 900;
}

.guide-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 33, 31, 0.05);
}

.guide-copy section + section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.guide-copy h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
}

.guide-copy p,
.guide-copy li {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .intro,
  .split,
  .region-story,
  .guide-hero,
  .guide-layout,
  .calendar,
  .contact-panel,
  .sources,
  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .listing-grid,
  .contact-grid,
  .spotlight-grid,
  .guide-intro,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-strip {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(214px, 62vw);
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 18px 26px;
  }

  .hero-panel,
  .intro-grid,
  .listing-grid,
  .contact-grid,
  .spotlight-grid,
  .guide-intro,
  .source-list {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 14px;
  }

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

  .section-heading,
  .detail-topbar,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .event-item {
    grid-template-columns: 76px 1fr;
  }

  .contact-grid .featured-plan {
    transform: none;
  }

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

  .guide-toc {
    position: static;
  }

  .frame-page {
    overflow: auto;
  }

  .frame-header {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .frame-actions {
    flex-wrap: wrap;
  }

  .frame-shell {
    height: 78vh;
  }
}
