/* ============================================
   SASAL HAVACILIK Brand Kit — Stylesheet
   ============================================ */

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

:root {
  --teal:       #2A7A8C;
  --teal-dark:  #1D5F6E;
  --teal-light: #3D9AAE;
  --linen:      #F2EFE8;
  --midnight:   #1A2E33;
  --white:      #FFFFFF;
  --stone:      #5A7A80;

  --font-head: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --max-w:     1100px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--linen);
  color: var(--midnight);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ─────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── Header ─────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 122, 140, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header-brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--midnight);
}

.header-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Hero ────────────────────────────────── */

.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(42, 122, 140, 0.15);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--midnight);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--stone);
  max-width: 420px;
  line-height: 1.7;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(42, 122, 140, 0.2));
}

/* ── Sections ───────────────────────────── */

.section {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid rgba(42, 122, 140, 0.1);
}

.section--alt {
  background-color: var(--white);
}

.section h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--midnight);
}

.section-desc {
  font-size: 16px;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ── Logo Section ───────────────────────── */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42,122,140,0.12);
}

.logo-card {
  display: flex;
  flex-direction: column;
}

.logo-card__inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}

.logo-card__inner img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.logo-card__inner--invert img {
  filter: brightness(1.15) contrast(1.1);
}

.logo-card--linen { background: var(--linen); }
.logo-card--white { background: var(--white); }
.logo-card--dark  { background: var(--midnight); }

.logo-card__meta {
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(42,122,140,0.1);
}

.logo-card__meta--dark {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  border-top-color: rgba(255,255,255,0.08);
}

.rule-box {
  background: rgba(42,122,140,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.rule-box h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.rule-box p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

.dont-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.dont-item {}

.dont-preview {
  background: var(--white);
  border: 1.5px solid rgba(224,80,80,0.25);
  border-radius: var(--radius);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.dont-label {
  font-size: 13px;
  color: var(--stone);
}

.x {
  color: #e05050;
  margin-right: 6px;
  font-weight: 700;
}

/* ── Colors ─────────────────────────────── */

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.color-swatch {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42,122,140,0.1);
}

.swatch-color {
  height: 110px;
}

.swatch-info {
  padding: 16px;
  background: var(--white);
}

.swatch-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--midnight);
  margin-bottom: 2px;
}

.swatch-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 600;
}

.swatch-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.swatch-values code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  color: var(--stone);
  background: var(--linen);
  padding: 3px 7px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

/* ── Typography ─────────────────────────── */

.type-scale {
  display: flex;
  flex-direction: column;
}

.type-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(42,122,140,0.08);
}

.type-row:last-child { border-bottom: none; }

.type-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.type-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--midnight);
}

.type-spec {
  font-size: 11px;
  color: var(--stone);
  font-family: 'SF Mono', 'Fira Code', monospace;
  line-height: 1.5;
}

.type-display {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--midnight);
}

.type-h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--midnight);
}

.type-h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--midnight);
}

.type-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
  max-width: 440px;
}

.type-caption {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Voice Dos & Donts ───────────────────── */

.voice-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.voice-col-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.voice-col-label--do   { background: rgba(42,122,140,0.12); color: var(--teal-dark); }
.voice-col-label--dont { background: rgba(224,80,80,0.1);   color: #b03030; }

.voice-list {
  list-style: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.voice-list li {
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-style: italic;
  color: var(--stone);
}

.voice-list li:last-child { border-bottom: none; }

.voice-list--do   { background: rgba(42,122,140,0.05); }
.voice-list--dont { background: rgba(224,80,80,0.04); }

/* ── Imagery ─────────────────────────────── */

.imagery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.imagery-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid transparent;
}

.imagery-card--do   { background: rgba(42,122,140,0.05);  border-color: rgba(42,122,140,0.15); }
.imagery-card--dont { background: rgba(224,80,80,0.04);   border-color: rgba(224,80,80,0.15); }

.imagery-card__tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.imagery-tag--do   { color: var(--teal-dark); }
.imagery-tag--dont { color: #b03030; }

.imagery-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imagery-list li {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.imagery-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 12px;
}

.imagery-card--dont .imagery-list li::before { color: #e05050; }

.imagery-mood {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.imagery-mood-item {
  flex: 1;
  height: 48px;
  border-radius: var(--radius);
}

.imagery-mood-label {
  font-size: 13px;
  color: var(--stone);
  font-style: italic;
}

/* ── Spacing ─────────────────────────────── */

.spacing-grid {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.spacing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.spacing-bar {
  width: 40px;
  background: var(--teal);
  border-radius: 3px;
}

.spacing-label {
  font-size: 11px;
  color: var(--stone);
  font-family: 'SF Mono', 'Fira Code', monospace;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Voice ──────────────────────────────── */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.voice-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid rgba(42,122,140,0.1);
  border-radius: var(--radius);
}

.voice-icon {
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 18px;
}

.voice-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--midnight);
}

.voice-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

/* ── App Grid ────────────────────────────── */

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.app-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Business Card ───────────────────────── */

.bc-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 32px;
}

.bc-wrapper {
  position: relative;
  width: 300px;
  height: 210px;
}

.bc {
  position: absolute;
  width: 280px;
  height: 166px;
  border-radius: 8px;
  overflow: hidden;
}

.bc--back-card {
  background: var(--midnight);
  top: 0;
  left: 20px;
  transform: rotate(4deg);
  box-shadow: 0 8px 24px rgba(26,46,51,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.bc-logo-back {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.bc--front-card {
  background: var(--linen);
  border: 1px solid rgba(42,122,140,0.14);
  top: 36px;
  left: 0;
  transform: rotate(-1.5deg);
  box-shadow: 0 16px 48px rgba(26,46,51,0.2), 0 4px 12px rgba(26,46,51,0.08);
  z-index: 2;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bc-top {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.bc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 3px;
}

.bc-role {
  font-family: var(--font-head);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
}

.bc-contact {
  font-size: 10px;
  color: var(--stone);
  line-height: 1.8;
}

/* ── Letterhead ──────────────────────────── */

.letterhead-mockup {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26,46,51,0.14), 0 2px 8px rgba(26,46,51,0.06);
  overflow: hidden;
  transform: rotate(-0.5deg);
}

.lh-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 12px;
}

.lh-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.lh-name {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--midnight);
}

.lh-sub {
  font-size: 9px;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
}

.lh-stripe {
  height: 3px;
  background: var(--teal);
}

.lh-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lh-line {
  height: 6px;
  background: rgba(26,46,51,0.08);
  border-radius: 3px;
}

.lh-foot {
  border-top: 1px solid rgba(42,122,140,0.1);
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  font-size: 8px;
  color: var(--stone);
  font-family: var(--font-head);
  letter-spacing: 0.06em;
}

/* ── Social Post ─────────────────────────── */

.social-post {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--midnight) 0%, var(--teal-dark) 100%);
  box-shadow: 0 16px 48px rgba(26,46,51,0.28), 0 4px 12px rgba(26,46,51,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
}

.social-accent-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(61,154,174,0.18);
}

.social-accent-circle--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -60px;
}

.social-accent-circle--2 {
  width: 100px;
  height: 100px;
  bottom: -30px;
  left: -30px;
  background: rgba(42,122,140,0.12);
}

.social-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.social-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-tag {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.social-handle {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* ── Envelope ────────────────────────────── */

.envelope-mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 19 / 11;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(42,122,140,0.12);
  box-shadow: 0 12px 40px rgba(26,46,51,0.14), 0 4px 12px rgba(26,46,51,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0.5deg);
}

.env-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.92;
}

.env-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
  margin-top: 16px;
}

.env-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.env-brand {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--midnight);
}

/* ── T-Shirt ─────────────────────────────── */

.tshirt-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
}

.tshirt-wrap svg {
  width: 260px;
  height: auto;
  display: block;
  overflow: visible;
}

/* ── Folder ──────────────────────────────── */

.folder-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.folder-wrap svg {
  width: 280px;
  height: auto;
  display: block;
  overflow: visible;
}

/* ── Mockups (legacy, kept for reference) ── */

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Business Card */
.biz-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  filter: drop-shadow(0 10px 28px rgba(26,46,51,0.18));
}

.biz-card__front {
  background: var(--midnight);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 32px;
  aspect-ratio: 1.75/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.biz-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.biz-card__back {
  background: var(--linen);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px 28px;
  aspect-ratio: 1.75/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(42,122,140,0.15);
  border-top: none;
}

.biz-top {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.biz-name    { font-size: 15px; font-weight: 600; color: var(--midnight); margin-bottom: 3px; }
.biz-title   { font-family: var(--font-head); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px; font-weight: 600; }
.biz-contact { font-size: 12px; color: var(--stone); }

/* Email Signature */
.email-sig {
  background: var(--white);
  border: 1px solid rgba(42,122,140,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.sig-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.sig-divider {
  height: 1px;
  background: rgba(42,122,140,0.15);
  margin-bottom: 16px;
}

.sig-name    { font-size: 15px; font-weight: 600; color: var(--midnight); margin-bottom: 3px; }
.sig-title   { font-family: var(--font-head); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 10px; font-weight: 600; }
.sig-contact { font-size: 12px; color: var(--stone); line-height: 1.8; }

/* Avatars */
.avatar-examples {
  display: flex;
  gap: 16px;
  align-items: center;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.avatar--teal  { background: var(--teal); }
.avatar--teal img { filter: brightness(0) invert(1); }

.avatar--dark  { background: var(--midnight); }
.avatar--dark img { filter: brightness(0) invert(1); }

.avatar--linen { background: var(--linen); border: 1px solid rgba(42,122,140,0.15); }

/* ── Footer ─────────────────────────────── */

.site-footer {
  background: var(--midnight);
  padding: 40px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  letter-spacing: 0.06em;
}

/* ── Responsive ─────────────────────────── */

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero { padding: 64px 0 48px; }
  .hero-inner { flex-direction: column-reverse; gap: 32px; }
  .hero-logo img { width: 180px; height: 180px; }
  .hero h1 { font-size: 64px; }

  .type-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .type-display { font-size: 40px; }

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

  .voice-dos-donts {
    grid-template-columns: 1fr;
  }

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