/* ============================================================
   Adila Fairoz — Portfolio
   Design: editorial magazine. Paper background, true-ink type,
   vermilion accent. Huge Fraunces display, rule lines, folios,
   oversized numerals, asymmetric layout.
   Headings: Fraunces (serif) · Body: Inter (sans)
   ============================================================ */

:root {
  --paper: #f7f4ee;
  --ink: #141412;
  --ink-soft: #5c5a54;
  --accent: #c8371f;
  --accent-dark: #a52a15;
  --rule: #141412;        /* strong editorial rules */
  --rule-soft: #dcd7cc;   /* hairline rules */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 72rem;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

a {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

ul,
ol {
  padding-left: 1.25rem;
}

em {
  font-style: italic;
}

/* ---------- Scroll reveal (motion-safe only) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Masthead nav ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-block: 0.875rem;
}

.masthead-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.masthead-links {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.875rem, 2.5vw, 2rem);
}

.masthead-links a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.masthead-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.masthead-cta {
  color: var(--accent) !important;
}

/* ---------- Section scaffolding ---------- */

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--rule);
}

.section-folio {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  border-top: 4px solid var(--rule);
  padding-top: 0.875rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.folio-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--accent);
  letter-spacing: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 20ch;
}

/* Placeholder blocks for content still to come ([ADD] items) */
.placeholder {
  border: 1px dashed var(--ink-soft);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.875rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-wide {
  margin-top: 1.5rem;
}

.placeholder-inline {
  color: var(--ink-soft);
  border: 1px dashed var(--ink-soft);
  padding: 0 0.375rem;
  font-size: 0.85em;
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.9375rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-text {
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.btn-text:hover {
  color: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule);
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 0.875rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 8.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.hero-headline em {
  color: var(--accent);
}

.hero-lower {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .hero-lower {
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
  }
}

.hero-subline {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  max-width: 19rem;
  width: 100%;
  justify-self: start;
}

@media (min-width: 800px) {
  .hero-photo {
    justify-self: end;
  }
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-meta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 0.875rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.875rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* ---------- 01 Highlights ---------- */

.stat-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 700px) {
  .stat-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.stat {
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule-soft);
}

@media (min-width: 700px) {
  .stat {
    padding: 0.5rem 1.75rem 0.5rem 0;
    border-top: none;
    border-left: 1px solid var(--rule-soft);
    padding-left: 1.75rem;
  }

  .stat:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-lead .stat-number {
  color: var(--accent);
  font-size: clamp(4.5rem, 8vw, 6.75rem);
}

.stat-x {
  font-style: italic;
  font-size: 0.7em;
}

.stat-label {
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

.stat-support {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 0.625rem;
  max-width: 26rem;
}

/* Analytics proof screenshots (phone captures) */
.proof-strip {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

.proof-strip img {
  height: clamp(240px, 26vw, 320px);
  width: auto;
  max-width: 100%;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  vertical-align: top;
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}

.proof-strip img:hover,
.case-shots img:hover {
  opacity: 0.88;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.proof-strip figcaption {
  flex-basis: 100%;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- 02 Case studies ---------- */

.case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
}

@media (min-width: 800px) {
  .case {
    grid-template-columns: 8rem 1fr;
    gap: 3rem;
  }
}

.case-index {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--rule-soft);
}

.case-index-spotlight {
  color: var(--accent);
  opacity: 0.35;
}

.case-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.case-kicker-spotlight {
  color: var(--accent);
}

.case-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  letter-spacing: -0.015em;
  margin-top: 0.625rem;
}

.case-positioning {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--ink-soft);
  margin-top: 0.875rem;
  max-width: 38rem;
}

.case-proof {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.625rem;
  max-width: 40rem;
}

.case-proof li {
  padding-left: 1.5rem;
  position: relative;
}

.case-proof li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.case-body {
  margin-top: 1.5rem;
  max-width: 44rem;
}

.case-takeaway {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  max-width: 40rem;
}

.case-takeaway-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.case-media {
  margin-top: 1.75rem;
  max-width: 32rem;
}

.case-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule-soft);
}

.case-media figcaption {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
}

.reel-embeds {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.reel-embeds figure {
  margin: 0;
}

.reel-cover {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.reel-embeds img {
  display: block;
  height: clamp(320px, 44vw, 460px);
  width: auto;
  max-width: 100%;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}

.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(20, 20, 18, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  backdrop-filter: blur(2px);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.reel-play svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 3px;
}

.reel-cover:hover .reel-play,
.reel-cover:focus-visible .reel-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

.reel-embeds figcaption {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}

.reel-embeds figcaption a {
  color: var(--ink);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.reel-embeds figcaption a:hover {
  color: var(--accent);
}

.case-shots {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.case-shots figure {
  margin: 0;
}

.case-shots img {
  height: clamp(240px, 26vw, 320px);
  width: auto;
  max-width: 100%;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  vertical-align: top;
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(20, 20, 18, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(92vw, 520px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.case-spotlight-body {
  margin-top: 0.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px) {
  .case-spotlight-body {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.case-media-side {
  margin-top: 0;
  max-width: 22rem;
}

.case-media-side img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (min-width: 700px) {
  .case-media-side {
    max-width: none;
  }
}

.case-link {
  margin-top: 1.5rem;
  font-weight: 500;
}

.case-link a {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.case-link a:hover {
  color: var(--accent);
}

/* ---------- 03 How I work ---------- */

.process-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
}

.process-steps {
  list-style: none;
  padding: 0;
}

.process-steps li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule-soft);
}

.step-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}

.process-steps h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.process-steps p {
  color: var(--ink-soft);
  margin-top: 0.25rem;
  max-width: 40rem;
}

/* ---------- 04 Skills ---------- */

.skills-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 800px) {
  .skills-columns {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

.skills-tier-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.skills-list {
  list-style: none;
  padding: 0;
}

.skills-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--rule-soft);
}

.skills-list-primary li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.01em;
}

.skills-list-secondary li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* ---------- 05 Experience ---------- */

.job {
  padding: 2rem 0;
  border-top: 1px solid var(--rule-soft);
}

.job-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  letter-spacing: -0.01em;
}

.job-meta {
  color: var(--ink-soft);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.job-bullets {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
  max-width: 44rem;
}

.job-bullets li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

.job-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---------- 06 Education ---------- */

.edu {
  padding: 2rem 0;
  border-top: 1px solid var(--rule-soft);
}

.edu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.edu-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  letter-spacing: -0.01em;
}

.edu-meta {
  color: var(--ink-soft);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edu-pivot {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.edu-note {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

/* Certificate: the "Student of the Month" badge itself reveals the certificate
   on hover (desktop) or tap/focus (touch + keyboard). */
.badge-cert {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.edu-cert-preview {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.badge-cert:hover .edu-cert-preview,
.badge-cert:focus-within .edu-cert-preview {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.edu-cert-preview img {
  display: block;
  width: min(30rem, 82vw);
  height: auto;
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .edu-cert-preview {
    transition: none;
    transform: none;
  }
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3125rem 0.75rem;
  margin-left: 0.625rem;
  vertical-align: middle;
}

/* Badge doubling as the certificate trigger */
.badge-cert .badge {
  margin-left: 0;
}

.badge-trigger {
  border: none;
  border-radius: 0;
  cursor: pointer;
  line-height: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.badge-trigger::after {
  content: "\00A0\2295";
  font-size: 0.9em;
  opacity: 0.85;
}

.badge-trigger:hover,
.badge-trigger:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 3px 10px rgba(200, 55, 31, 0.35);
}

/* ---------- 07 Contact ---------- */

.contact {
  border-bottom: none;
  padding-bottom: 2.5rem;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.contact-heading em {
  color: var(--accent);
}

.contact-actions {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--rule);
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  flex-wrap: wrap;
}

.contact-label {
  min-width: 11rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  align-self: center;
}

.contact-list a {
  font-weight: 500;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.contact-friction {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.footer {
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 4px solid var(--rule);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {
  .masthead-name {
    font-size: 0.9rem;
  }

  .masthead-links li:not(:last-child) {
    display: none;
  }

  .case-index {
    font-size: 2.5rem;
  }

  .process-steps li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .step-no {
    font-size: 1.75rem;
  }

  .contact-label {
    min-width: 100%;
  }
}
