/* =============================================================
   Corsini Travel — Client Portal
   ============================================================= */

:root {
  --navy:       #01213A;
  --navy-mid:   #0B5984;
  --teal:       #1C9AC0;
  --teal-light: #4DB5D4;
  --teal-pale:  #E6F5FA;
  --pearl:      #F4F8FA;
  --pearl-dk:   #DDE8ED;
  --white:      #FFFFFF;
  --charcoal:   #070707;
  --text:       #1A2A35;
  --text-mid:   #4A6070;
  --text-light: #8AACBE;
  --gold:       #B8924A;
  --gold-light: #D4AC6A;
  --gold-pale:  #FAF4E6;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(1,33,58,0.08);
  --shadow-md:  0 8px 40px rgba(1,33,58,0.13);
  --t:          0.2s ease;
  --font-serif: 'PT Serif', Georgia, serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--pearl); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

/* =============================================================
   Top Navigation
   ============================================================= */
.portal-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

.portal-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  flex-shrink: 0;
}
.portal-nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.portal-nav__brand-fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.portal-nav__mark {
  color: var(--teal-light);
  font-size: 1.1rem;
}
.portal-nav__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.portal-nav__sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.portal-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
}
.portal-nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.portal-nav__link:hover,
.portal-nav__link.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.portal-nav__link.is-active {
  color: var(--teal-light);
}

.portal-nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portal-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portal-nav__user {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.portal-nav__logout {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  transition: color var(--t), border-color var(--t);
}
.portal-nav__logout:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}

/* =============================================================
   Avatar dropdown menu
   ============================================================= */
.portal-user-menu {
  position: relative;
}

.portal-avatar {
  cursor: pointer;
  border: none;
  background: var(--teal);
  transition: opacity var(--t), box-shadow var(--t);
}
.portal-avatar:hover {
  opacity: .88;
  box-shadow: 0 0 0 3px rgba(28,154,192,.35);
}

.portal-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #0f2133;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.portal-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.portal-dropdown__head {
  padding: .85rem 1rem .75rem;
}
.portal-dropdown__name {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .18rem;
}
.portal-dropdown__email {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  word-break: break-all;
}

.portal-dropdown__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0;
}

.portal-dropdown__item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1rem;
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}
.portal-dropdown__item:hover,
.portal-dropdown__item:focus {
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
}
.portal-dropdown__item.is-active {
  color: var(--teal);
}
.portal-dropdown__item svg {
  opacity: .65;
  flex-shrink: 0;
}
.portal-dropdown__item:hover svg,
.portal-dropdown__item.is-active svg {
  opacity: 1;
}
.portal-dropdown__item--logout {
  color: rgba(239,83,80,.8);
}
.portal-dropdown__item--logout:hover {
  background: rgba(239,83,80,.08);
  color: #ef5350;
}
/* round corners for first/last items */
.portal-dropdown > .portal-dropdown__item:first-of-type { border-radius: 10px 10px 0 0; }
.portal-dropdown > .portal-dropdown__item:last-of-type  { border-radius: 0 0 10px 10px; }


/* =============================================================
   Hero Greeting Strip
   ============================================================= */
.portal-hero {
  background: var(--navy);
  padding: 3rem 2rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.portal-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,154,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.portal-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.portal-hero__eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.portal-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.portal-hero__title em {
  font-style: italic;
  color: var(--teal-light);
}
.portal-hero__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* =============================================================
   Main Content
   ============================================================= */
.portal-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.portal-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* =============================================================
   Stat Row
   ============================================================= */
.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.portal-stat {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--pearl-dk);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
.portal-stat__value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.portal-stat__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.portal-stat__note {
  font-size: 0.7rem;
  color: var(--text-mid);
  margin-top: 0.25rem;
}

/* =============================================================
   Journey Cards
   ============================================================= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.journey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pearl-dk);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.journey-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.journey-card__header {
  padding: 1.4rem 1.5rem 1rem;
  border-bottom: 1px solid var(--pearl-dk);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.journey-card__id {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.journey-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}
.journey-card__dest {
  font-size: 0.7rem;
  color: var(--text-mid);
  margin-top: 0.25rem;
}

.jc-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}
.jc-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.jc-status--new     { background: #fff3cd; color: #7c5a00; }
.jc-status--new::before     { background: #f59e0b; }
.jc-status--read    { background: var(--teal-pale); color: var(--navy-mid); }
.jc-status--read::before    { background: var(--teal); }
.jc-status--replied { background: #dcfce7; color: #166534; }
.jc-status--replied::before { background: #22c55e; }

.journey-card__body {
  padding: 1.1rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.jc-detail {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.jc-detail__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 72px;
  flex-shrink: 0;
}
.jc-detail__value {
  color: var(--text-mid);
}

.journey-card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--pearl-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.jc-date {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* =============================================================
   Progress Timeline
   ============================================================= */
.journey-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  overflow-x: auto;
}

.jt-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 80px;
}
.jt-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--pearl-dk);
  z-index: 0;
}
.jt-step.is-done:not(:last-child)::after {
  background: var(--teal);
}
.jt-step.is-active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--teal) 0%, var(--pearl-dk) 100%);
}

.jt-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--pearl-dk);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
}
.jt-dot svg { opacity: 0; transition: opacity var(--t); }
.jt-step.is-done .jt-dot {
  border-color: var(--teal);
  background: var(--teal);
}
.jt-step.is-done .jt-dot svg { opacity: 1; }
.jt-step.is-active .jt-dot {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--teal-pale);
}
.jt-step.is-active .jt-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.jt-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.4;
  padding: 0 4px;
}
.jt-step.is-done .jt-label,
.jt-step.is-active .jt-label {
  color: var(--navy-mid);
}
.jt-step.is-active .jt-label {
  color: var(--teal);
}

/* =============================================================
   Detail Page
   ============================================================= */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.detail-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pearl-dk);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.detail-panel:last-child { margin-bottom: 0; }

.dp-head {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--pearl-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dp-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.dp-body {
  padding: 1.5rem;
}

.dp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.dp-field__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.dp-field__value {
  font-size: 0.82rem;
  color: var(--text);
}
.dp-field--full { grid-column: 1 / -1; }

.dp-notes {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  white-space: pre-wrap;
  background: var(--pearl);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--pearl-dk);
}

/* =============================================================
   Buttons
   ============================================================= */
.btn-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  transition: background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-portal--navy {
  background: var(--navy);
  color: var(--white);
}
.btn-portal--navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(1,33,58,0.25);
}
.btn-portal--teal {
  background: var(--teal);
  color: var(--white);
}
.btn-portal--teal:hover {
  background: var(--teal-light);
}
.btn-portal--ghost {
  background: transparent;
  color: var(--navy-mid);
  border: 1px solid var(--pearl-dk);
}
.btn-portal--ghost:hover {
  background: var(--pearl);
  border-color: var(--teal);
  color: var(--teal);
}
.btn-portal--gold {
  background: var(--gold);
  color: var(--white);
}
.btn-portal--gold:hover {
  background: var(--gold-light);
}
.btn-portal--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-portal--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================================
   Forms (profile, etc.)
   ============================================================= */
.portal-form-group {
  margin-bottom: 1.25rem;
}
.portal-form-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.portal-form-input,
.portal-form-select,
.portal-form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--pearl-dk);
  border-radius: 7px;
  background: var(--pearl);
  color: var(--text);
  font-size: 0.82rem;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.portal-form-input:focus,
.portal-form-select:focus,
.portal-form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-pale);
}
.portal-form-textarea { resize: vertical; line-height: 1.6; }

/* =============================================================
   Login Page
   ============================================================= */
.portal-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 480px;
}

.login-visual {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-visual__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #01213A 0%, #0B5984 60%, #1C9AC0 100%);
  opacity: 0.9;
}
.login-visual__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,154,192,0.18) 0%, transparent 70%);
}
.login-visual__orb--1 { width:600px; height:600px; top:-200px; right:-200px; }
.login-visual__orb--2 { width:400px; height:400px; bottom:-150px; left:-100px; }
.login-visual__content { position: relative; z-index: 1; }
.login-visual__logo {
  /* logo link inside carries its own margin-bottom */
}
.login-visual__mark { color: var(--teal-light); font-size: 1.4rem; }
.login-visual__brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); }
.login-visual__tagline { color: rgba(255,255,255,0.4); font-size: 0.55rem; letter-spacing: 0.15em; display: block; margin-top: 2px; }
.login-visual__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.login-visual__heading em { color: var(--teal-light); font-style: italic; }
.login-visual__desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 32ch; }
.login-visual__footer { position: relative; z-index: 1; font-size: 0.65rem; color: rgba(255,255,255,0.25); }
.login-visual__top-logo {
  position: absolute;
  top: 1.75rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.login-form-side {
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form-side__head {
  margin-bottom: 2.5rem;
}
.login-form-side__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.login-form-side__sub {
  font-size: 0.78rem;
  color: var(--text-mid);
}
.login-error {
  background: #fff0f0;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: #b91c1c;
  margin-bottom: 1.25rem;
}

/* =============================================================
   Flash Messages
   ============================================================= */
.portal-flash {
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.portal-flash--success { background: #dcfce7; color: #166534; border-color: #22c55e; }
.portal-flash--error   { background: #fef2f2; color: #b91c1c; border-color: #ef4444; }

/* =============================================================
   Empty State
   ============================================================= */
.portal-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pearl-dk);
}
.portal-empty__icon {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.portal-empty__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.portal-empty__text {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* =============================================================
   Concierge CTA Card
   ============================================================= */
.concierge-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.concierge-card::before {
  content: '✦';
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.06);
}
.concierge-card__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}
.concierge-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.concierge-card__text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .portal-login { grid-template-columns: 1fr; }
  .login-visual { display: none; }
  .login-form-side { min-height: 100vh; padding: 2.5rem 1.75rem; }
  .portal-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .portal-nav { padding: 0 1.25rem; gap: 0.75rem; }
  .portal-nav__links { display: none; }
  .portal-nav__user { display: none; }
  .portal-dropdown { min-width: 190px; right: -0.5rem; }
  .portal-hero { padding: 2rem 1.25rem 2.5rem; }
  .portal-body { padding: 1.75rem 1.25rem 3rem; }
  .portal-stats { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .dp-grid { grid-template-columns: 1fr; }
  .dp-field--full { grid-column: 1; }
}
