:root {
  --bg: #1e1e1e;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 248, 238, 0.1);
  --panel: #efe4d1;
  --panel-soft: #dbe6f5;
  --text: #f4ead8;
  --text-dark: #1a1b1d;
  --muted: rgba(244, 234, 216, 0.78);
  --muted-dark: rgba(26, 27, 29, 0.7);
  --accent: #f6ab22;
  --accent-soft: rgba(246, 169, 26, 0.18);
  --brand-blue: #2e67bc;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 169, 26, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(46, 103, 188, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(34, 34, 35, 0.96), rgba(19, 20, 22, 0.98)),
    url("assets/pattern-tile.jpg");
  background-size: auto, auto, cover, 220px 220px;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 20px 0 16px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-bottom: 28px;
  padding: 14px 22px;
  background: rgba(17, 18, 20, 0.82);
  backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: min(240px, 34vw);
  height: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--accent-soft);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 28px;
  align-items: start;
  padding: 64px 72px;
  min-height: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 169, 26, 0.12), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(46, 103, 188, 0.14), transparent 18%),
    linear-gradient(140deg, rgba(250, 248, 243, 0.06), rgba(250, 248, 243, 0.02)),
    #1e1e1e;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(220, 231, 247, 0.95), rgba(242, 231, 213, 0.92)),
    #ddd;
  color: var(--text-dark);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(246, 169, 26, 0.95);
}

.page-hero .eyebrow,
.section-alt .eyebrow,
.section-contrast .eyebrow {
  color: #8b5b00;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.lead,
.section-intro,
.card,
.person-card p,
.pillar-card p,
.forecast-card span,
.rationale-card p,
.timeline-card p,
.stack-card p,
.backend-bar,
.metric-list span,
.feature-list,
.site-footer,
.deck-preview {
  font-size: 1.03rem;
  line-height: 1.72;
}

.lead {
  max-width: 44ch;
  color: var(--muted);
}

.accent-copy {
  color: rgba(246, 169, 26, 0.95);
  font-weight: 600;
}

.page-hero .lead,
.section-alt .section-intro,
.section-contrast .section-intro {
  color: var(--muted-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.button-primary {
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffbf4a 0%, var(--accent) 100%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.card,
.person-card,
.pillar-card,
.forecast-card,
.rationale-card,
.timeline-card,
.stack-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.hero-panel {
  align-self: start;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.panel-image,
.hero-banner,
.slide-strip img,
.visual-grid img {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.hero-banner {
  border-color: rgba(0, 0, 0, 0.08);
  max-height: 270px;
}

.panel-label,
.forecast-year,
.person-role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.metric-list,
.feature-list {
  margin: 0;
  padding-left: 18px;
}

.metric-list li,
.feature-list li {
  margin-bottom: 16px;
}

.metric-list strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  padding: 22px 0;
}

.section-heading {
  margin-bottom: 14px;
}

.section-alt,
.section-contrast {
  margin: 24px 0;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.section-alt {
  background: linear-gradient(180deg, rgba(220, 231, 247, 0.96), rgba(220, 231, 247, 0.88));
  color: var(--text-dark);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(242, 231, 213, 0.96), rgba(242, 231, 213, 0.88));
  color: var(--text-dark);
}

.two-column,
.pillar-grid,
.forecast-grid,
.rationale-grid,
.stack-grid,
.brand-grid,
.preview-grid {
  display: grid;
  gap: 20px;
}

.two-column {
  grid-template-columns: 1.15fr 0.85fr;
}

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

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

.about-platform-section .section-heading h2 {
  max-width: 16ch;
}

.about-platform-section .section-intro {
  max-width: 62ch;
}

.split-section {
  align-items: start;
}

.leadership-grid {
  display: grid;
  gap: 18px;
}

.slide-strip {
  margin-top: 22px;
}

.compact-strip img {
  max-height: 220px;
  object-position: top center;
}

.card,
.person-card,
.timeline-card,
.stack-card,
.forecast-card,
.rationale-card {
  padding: 26px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.section-alt .card,
.section-alt .person-card,
.section-alt .timeline-card,
.section-alt .stack-card,
.section-contrast .forecast-card {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(0, 0, 0, 0.08);
}

.person-card,
.rationale-card,
.stack-card,
.forecast-card {
  height: 100%;
}

.person-card {
  display: grid;
  align-content: start;
}

.person-portrait {
  width: 94px;
  height: 94px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.card p:last-child,
.person-card p:last-child,
.stack-card p:last-child,
.rationale-card p:last-child,
.timeline-card p:last-child {
  margin-bottom: 0;
}

.section-illustration {
  display: block;
  width: min(100%, 220px);
  margin-bottom: 18px;
  filter: contrast(1.04);
}

.section-illustration-small {
  width: min(100%, 140px);
}

.section-illustration-large {
  width: min(100%, 320px);
  margin: 0 auto;
}

.illustration-card {
  display: grid;
  place-items: center;
}

.person-role {
  color: rgba(246, 169, 26, 0.95);
  margin-bottom: 8px;
}

.context-media {
  display: grid;
  place-items: center;
  min-height: 132px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.section-alt .context-media,
.section-contrast .context-media {
  border-color: rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(239, 228, 209, 0.74), rgba(219, 230, 245, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.context-media-large {
  min-height: 220px;
}

.context-media-tall {
  min-height: 320px;
  margin-bottom: 0;
}

.context-media-image {
  width: min(100%, 200px);
  max-height: 200px;
  object-fit: contain;
  filter: contrast(1.03);
}

.section-alt .context-media-image,
.section-contrast .context-media-image {
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.context-media-large .context-media-image {
  width: min(100%, 280px);
  max-height: 260px;
}

.context-media-tall .context-media-image {
  width: min(100%, 320px);
  max-height: 300px;
}

.section-alt .person-role,
.section-contrast .forecast-year {
  color: #8b5b00;
}

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

.pillar-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.pillar-card-wide {
  grid-column: 1 / -1;
}

.pillar-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(246, 169, 26, 0.14);
  color: #8b5b00;
  font-size: 0.95rem;
  font-weight: 800;
}

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

.why-matters-layout,
.why-matters-intro,
.why-matters-grid {
  display: grid;
  gap: 20px;
}

.why-matters-layout {
  grid-template-columns: 1.05fr 1.15fr;
  align-items: stretch;
}

.why-matters-intro {
  grid-template-columns: 1.05fr 1.15fr;
  align-items: stretch;
  margin-bottom: 20px;
}

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

.why-matters-lead {
  height: 100%;
}

.forecast-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.forecast-card-visual {
  grid-column: 1 / -1;
}

.why-matters-visual {
  grid-column: auto;
}

.forecast-card strong {
  line-height: 1.12;
}

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

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

.rationale-card {
  min-height: 150px;
}

.timeline-card {
  display: grid;
  gap: 18px;
}

.timeline-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

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

.visual-grid img {
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.58));
  border-color: rgba(0, 0, 0, 0.06);
  object-fit: contain;
  padding: 10px;
}

.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.brand-chip {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 800;
  text-align: center;
}

.backend-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffca62 0%, var(--accent) 100%);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38);
}

.page-hero-copy {
  align-self: center;
}

.page-hero-media {
  display: grid;
  gap: 16px;
  align-content: center;
}

.mini-stat {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.page-hero-copy h1 {
  max-width: 9ch;
}

.brand-system-card {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.brand-system-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.hero-chip {
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}

.hero-chip-green { background: #53b14f; }
.hero-chip-blue { background: #3b6fbb; }
.hero-chip-coral { background: #ee9271; }
.hero-chip-lime { background: #76cf45; }
.hero-chip-charcoal { background: #232323; }
.hero-chip-violet { background: #8f54b8; }
.hero-chip-teal { background: #3fb9bc; }
.hero-chip-pink { background: #f18db1; }

.brand-system-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e2ad40 0%, #cc9414 100%);
  color: #1b1b1b;
  font-weight: 700;
}

.mini-stat-tight {
  padding: 20px 22px;
}

.pillar-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted-dark);
  font-size: 1rem;
}

.pillar-note span {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex: none;
}

.pillar-note p {
  margin: 0;
  max-width: 52ch;
}

.mini-stat span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b5b00;
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.mini-stat p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.preview-section {
  padding-bottom: 10px;
}

.contact-section {
  padding-top: 26px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-soft);
}

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

.contact-form,
.contact-form-grid {
  display: grid;
  gap: 16px;
}

.contact-form {
  align-content: start;
}

.contact-status {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.5;
}

.contact-status.is-visible {
  display: block;
}

.contact-status.is-success {
  background: rgba(83, 177, 79, 0.14);
  border-color: rgba(83, 177, 79, 0.32);
  color: #d9f5d7;
}

.contact-status.is-error {
  background: rgba(241, 110, 110, 0.14);
  border-color: rgba(241, 110, 110, 0.32);
  color: #ffd8d8;
}

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

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

.form-field-full {
  grid-column: 1 / -1;
}

.contact-honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 169, 26, 0.95);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 234, 216, 0.48);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(246, 169, 26, 0.8);
  box-shadow: 0 0 0 3px rgba(246, 169, 26, 0.14);
}

.contact-form .button {
  margin-top: 4px;
  justify-self: start;
}

.g-recaptcha {
  margin-top: 4px;
}

.contact-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 169, 26, 0.95);
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-card a {
  color: var(--text);
}

.contact-card a:hover {
  color: var(--accent);
}

.deck-preview {
  overflow: hidden;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.deck-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.site-footer {
  padding: 26px 0 0;
  color: var(--muted);
}

.site-footer p,
.site-footer a {
  font-size: 0.98rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--accent);
}

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

.site-footer-extended {
  padding-top: 28px;
  align-items: flex-start;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

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

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

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .two-column,
  .pillar-grid,
  .forecast-grid,
  .why-matters-layout,
  .why-matters-intro,
  .why-matters-grid,
  .stack-grid,
  .visual-grid,
  .brand-grid,
  .rationale-grid,
  .preview-grid,
  .contact-panel,
  .contact-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .section-alt,
  .section-contrast {
    padding: 34px 24px;
  }

  .hero {
    gap: 20px;
  }

  .site-header {
    border-radius: 28px;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  h1 {
    max-width: 11ch;
  }

  .brand-chip-grid {
    grid-template-columns: 1fr;
  }

  .context-media-tall {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding: 14px 16px;
    top: 10px;
  }

  .brand em {
    font-size: 1rem;
  }

  .brand-logo {
    width: min(210px, 54vw);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .hero,
  .page-hero,
  .section-alt,
  .section-contrast,
  .contact-panel {
    padding: 28px 20px;
  }

  .page-hero-copy h1,
  .page-hero h2 {
    max-width: 11ch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-card {
    padding: 18px;
  }

  .hero-actions,
  .site-footer,
  .backend-bar,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .context-media-large {
    min-height: 180px;
  }
}
