/* ========================================================================== 
   Gergely Dinya Portfolio — Cleaned stylesheet
   --------------------------------------------------------------------------
   1. Theme variables and base reset
   2. Global layout and background
   3. Header / navigation
   4. Hero section
   5. Buttons / icon links
   6. Portrait blob
   7. Sections and cards
   8. Projects, publications, timeline, skills, contact
   9. Reveal / motion states
   10. Responsive layout
   ========================================================================== */

/* ========================================================================== 
   1. Theme variables and base reset
   ========================================================================== */

:root {
  --background: #0b1220;
  --background-soft: #101a2d;

  --surface: rgba(21, 32, 49, 0.78);
  --surface-strong: rgba(26, 39, 59, 0.92);
  --surface-gradient: linear-gradient(
    135deg,
    rgba(31, 48, 70, 0.88),
    rgba(17, 27, 43, 0.82)
  );

  --text: #e6edf7;
  --muted: #9aa8bb;

  --border: rgba(148, 163, 184, 0.18);
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.13);
  --tag: rgba(125, 211, 252, 0.11);

  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --card-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);

  --content-width: 1330px;
  --header-width: 560px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #08111f 0%, #101827 48%, #182233 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: var(--text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

/* ========================================================================== 
   2. Global layout and background canvas
   ========================================================================== */

#network-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.page {
  width: min(var(--content-width), calc(100% - 32px));
  margin-inline: auto;
  padding: 112px 0 72px;
}

/* ========================================================================== 
   3. Header / navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;

  width: min(560px, calc(100% - 32px));
  transform: translateX(-50%);

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;

  gap: 0;
  padding: 10px 14px;

  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.logo {
  grid-column: 1;
  justify-self: center;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(125, 211, 252, 0.11);

  color: var(--text);
  font-weight: 950;
  letter-spacing: -0.08em;
  text-decoration: none;
}

/* Makes nav links participate directly in the parent 5-column grid */
.site-header nav {
  display: contents;
}

.site-header nav a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  padding: 8px 0;
  border-radius: 999px;

  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  transition: background 180ms ease, color 180ms ease;
}

.site-header nav a:hover {
  color: var(--text);
  background: rgba(125, 211, 252, 0.1);
}

/* ========================================================================== 
   4. Typography and hero
   ========================================================================== */

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(4rem, 7vw, 8.5rem);
  line-height: 0.98;
}

h1 span {
  color: var(--accent);
  text-shadow: 0 0 48px rgba(125, 211, 252, 0.2);
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

.name-nowrap {
  white-space: nowrap;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 72px;
  align-items: center;
  padding: 110px 0 120px;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
}

.highlights {
  margin: 28px 0 0;
  padding-left: 22px;
  color: var(--text);
  font-size: 1.1rem;
}

.highlights li + li {
  margin-top: 8px;
}

/* ========================================================================== 
   5. Buttons / icon links
   ========================================================================== */

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  margin-top: 84px;
}

.icon-link {
  width: 76px;
  height: 76px;
  min-height: 76px;
  flex: 0 0 76px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, rgba(31, 48, 70, 0.92), rgba(17, 27, 43, 0.86));
  box-shadow:
    inset 0 0 0 1.5px rgba(125, 211, 252, 0.38),
    0 14px 34px rgba(0, 0, 0, 0.22);

  text-decoration: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.icon-link:hover {
  transform: translate3d(0, -4px, 0) scale(1.04);
  background: linear-gradient(135deg, rgba(42, 63, 92, 0.96), rgba(20, 32, 50, 0.9));
  box-shadow:
    inset 0 0 0 2px rgba(125, 211, 252, 0.72),
    0 18px 44px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(125, 211, 252, 0.16);
}

.icon-link svg {
  width: 30px;
  height: 30px;
  fill: #e6edf7;
  opacity: 0.95;
  transform: translateZ(0);
}

.icon-link:hover svg {
  fill: var(--accent);
}

.pictogram-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 28px 32px;
}

.email-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 36px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;

  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;

  background: linear-gradient(135deg, rgba(31, 48, 70, 0.92), rgba(17, 27, 43, 0.86));
  box-shadow:
    inset 0 0 0 1.5px rgba(125, 211, 252, 0.32),
    0 14px 34px rgba(0, 0, 0, 0.22);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.email-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(42, 63, 92, 0.96), rgba(20, 32, 50, 0.9));
  box-shadow:
    inset 0 0 0 2px rgba(125, 211, 252, 0.58),
    0 18px 44px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(125, 211, 252, 0.14);
}

/* ========================================================================== 
   6. Portrait blob
   ========================================================================== */

.portrait {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.portrait-glow {
  display: none;
  position: absolute;
  width: min(430px, 34vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.18);
  filter: blur(55px);
  transform: scale(0.9);
  pointer-events: none;
}

.portrait-inner {
  position: relative;
  width: min(430px, 34vw);
  aspect-ratio: 1;

  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;

  cursor: pointer;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 34% 66% 56% 44% / 43% 42% 58% 57%;

  background:
    radial-gradient(circle at var(--blob-light-x, 28%) var(--blob-light-y, 24%), rgba(255, 255, 255, 0.28), transparent 17%),
    linear-gradient(135deg, #1e3a5f 0%, #26384e 45%, #0f172a 100%);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(56, 189, 248, 0.18);

  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, border-radius;

  transition:
    transform 120ms ease-out,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.portrait-inner::before,
.portrait-inner::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-inner::after {
  inset: 30%;
  border-color: rgba(226, 232, 240, 0.08);
}

.portrait-inner:hover,
.portrait-inner.is-near {
  border-radius: 50%;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(56, 189, 248, 0.3);
}

.portrait-inner.is-clicked {
  animation: pop-wobble 650ms cubic-bezier(.2, .8, .2, 1);
}

.portrait-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;

  pointer-events: none;
  user-select: none;

  transform: none;
  filter: contrast(1.03) saturate(1.02);
  image-rendering: auto;
  backface-visibility: hidden;
}

.portrait-inner span {
  color: #e6edf7;
  font-size: 4rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-shadow: 0 0 26px rgba(125, 211, 252, 0.35);
  pointer-events: none;
}

@keyframes pop-wobble {
  0% { scale: 1; }
  35% { scale: 1.08 0.94; }
  65% { scale: 0.96 1.05; }
  100% { scale: 1; }
}

/* ========================================================================== 
   7. Sections and shared cards
   ========================================================================== */

.section {
  padding: 74px 0;
  border-top: 1px solid var(--border);
}

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

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.project-card,
.publication,
.timeline-item,
.skill-summary,
.stat,
.contact-card {
  position: relative;
  overflow: hidden;

  border: 1px solid var(--border);
  background: var(--surface-gradient);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);

  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.project-card,
.publication,
.timeline-item {
  padding: 26px;
  border-radius: 28px;
}

.stat,
.contact-card,
.skill-summary {
  border-radius: 28px;
}

.project-card::before,
.publication::before,
.timeline-item::before,
.stat::before,
.contact-card::before,
.skill-summary::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;

  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(125, 211, 252, 0.16) 0%,
    rgba(125, 211, 252, 0.08) 18%,
    rgba(125, 211, 252, 0.035) 38%,
    transparent 68%
  );

  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.project-card:hover::before,
.publication:hover::before,
.timeline-item:hover::before,
.stat:hover::before,
.contact-card:hover::before,
.skill-summary:hover::before {
  opacity: 1;
}

.project-card:hover,
.publication:hover,
.timeline-item:hover,
.skill-summary:hover {
  border-color: rgba(125, 211, 252, 0.46);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

/* ========================================================================== 
   8. Projects, publications, timeline, skills, contact
   ========================================================================== */

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 32px 0;
}

.stat {
  padding: 22px;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.project-card.featured {
  border-color: rgba(125, 211, 252, 0.36);
}

.project-title {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;

  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.project-card p,
.publication p,
.timeline-item p {
  position: relative;
  margin: 10px 0 0;
  color: var(--muted);
}

.tags,
.concept-tags,
.publication-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags {
  margin-top: 20px;
}

.tags span,
.concept-tags span,
.publication-meta span,
.timeline-item > span,
.muted-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: var(--tag);

  color: var(--accent);
  font-weight: 800;
}

.tags span {
  padding: 6px 10px;
  font-size: 0.82rem;
}

.publication-list {
  display: grid;
  gap: 16px;
}

.publication-meta {
  margin-bottom: 12px;
}

.publication-meta span,
.timeline-item > span,
.muted-link {
  padding: 5px 10px;
  font-size: 0.78rem;
}

.publication a {
  position: relative;
  display: inline-block;
  margin-top: 14px;

  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-item > span {
  margin-bottom: 14px;
}

.award-list {
  position: relative;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.award-list li {
  margin-bottom: 10px;
}

.award-list li::marker {
  color: var(--accent);
}

.skills-section {
  padding-top: 54px;
}

.skill-summary {
  display: grid;
  gap: 18px;
  max-width: 100%;
  padding: 30px;
}

.skill-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: start;
}

.skill-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-row p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.concept-tags span {
  min-height: 30px;
  padding: 5px 11px;

  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    rgba(31, 48, 70, 0.72),
    rgba(17, 27, 43, 0.62)
  );
  border-color: rgba(125, 211, 252, 0.16);
}

.concept-tags span:hover {
  color: var(--accent);
  border-color: rgba(125, 211, 252, 0.38);
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 0;
}

.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px;
}

/* ========================================================================== 
   9. Reveal / motion states
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ========================================================================== 
   10. Responsive layout
   ========================================================================== */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 48px;
  }

  .portrait-inner,
  .portrait-glow {
    width: min(380px, 36vw);
  }
}

@media (max-width: 900px) {
  .hero,
  .contact,
  .project-grid,
  .timeline,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .portrait {
    justify-content: center;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page {
    width: min(100% - 36px, 620px);
    margin-inline: auto;
    padding: 108px 0 56px;
  }

  .site-header {
    top: 12px;
    width: min(100% - 20px, 430px);
    grid-template-columns: 38px 1fr;
    gap: 8px;
    padding: 7px 9px;
  }

  .logo {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .site-header nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
  }

  .site-header nav a {
    padding: 6px 2px;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
    font-weight: 850;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 70px 0 72px;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(4rem, 15vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .name-nowrap {
    white-space: nowrap;
  }

  .intro {
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(1.25rem, 4.2vw, 1.55rem);
    line-height: 1.65;
  }

  .highlights {
    margin-top: 26px;
    padding-left: 20px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .portrait {
    order: -1;
  }

  .portrait-inner,
  .portrait-glow {
    width: min(360px, 84vw);
  }

  .links {
    margin-top: 44px;
    gap: 14px;
  }

  .icon-link {
    width: 64px;
    height: 64px;
    min-height: 64px;
    flex: 0 0 64px;
  }

  .icon-link svg {
    width: 28px;
    height: 28px;
  }

  .section {
    padding: 48px 0;
  }

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

  .project-card,
  .publication,
  .timeline-item,
  .skill-summary,
  .contact-card {
    padding: 20px;
    border-radius: 22px;
  }

  .skill-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact {
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .page {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    width: min(100% - 14px, 430px);
    gap: 6px;
    padding: 7px;
  }

  .site-header nav a {
    font-size: clamp(0.52rem, 2.35vw, 0.68rem);
  }

  h1 {
    font-size: clamp(3.4rem, 14.5vw, 4.7rem);
  }

  .intro {
    font-size: 1.12rem;
  }

  .portrait-inner,
  .portrait-glow {
    width: min(330px, 86vw);
  }
}
/* ==========================================================================
   Desktop wide / 133% look
   Keep this at the very bottom of style.css
   ========================================================================== */

@media (min-width: 761px) {
  body {
    zoom: 1.333;
  }

  :root {
    --content-width: 1120px;
    --header-width: 420px;
  }

  .page {
    width: min(var(--content-width), calc(100% - 32px));
    margin-inline: auto;
    padding: 112px 0 72px;
  }

  .site-header {
    width: min(var(--header-width), calc(100% - 32px));
  }

  .hero {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 56px;
    padding: 80px 0 90px;
  }

  .hero-content {
    max-width: 720px;
  }

  h1 {
    font-size: clamp(3rem, 8vw, 7rem);
  }

  h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
  }

  .intro {
    max-width: 720px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
  }

  .portrait-inner,
  .portrait-glow {
    width: min(380px, 75vw);
  }

  .links {
    margin-top: 72px;
  }

  .icon-link {
    width: 72px;
    height: 72px;
    min-height: 72px;
    flex: 0 0 72px;
  }
}

/* Do not zoom mobile */
@media (max-width: 760px) {
  body {
    zoom: 1;
  }
}

.hero-links {
  grid-column: 1 / -1;
  justify-self: center;

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;
  margin-top: 0px;
}
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;

  width: auto;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;

  background: rgba(8, 17, 31, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.logo {
  flex: 0 0 auto;

  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(125, 211, 252, 0.11);

  color: var(--text);
  font-weight: 950;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 0;
  border-radius: 999px;

  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--text);
  background: transparent;
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    gap: 14px;
    padding: 8px 14px;
    max-width: calc(100% - 16px);
  }

  .logo {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a {
    font-size: clamp(0.62rem, 2.45vw, 0.76rem);
    padding: 6px 0;
  }
}