:root {
  --bg: #0b1020;
  --bg-soft: rgba(10, 16, 31, 0.8);
  --card: rgba(15, 22, 40, 0.74);
  --card-border: rgba(165, 195, 255, 0.14);
  --text: #eef3ff;
  --muted: rgba(238, 243, 255, 0.72);
  --accent: #63f2c0;
  --accent-2: #f6c86a;
  --accent-3: #80a7ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(99, 242, 192, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(128, 167, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #08101e 0%, #0b1120 35%, #09101b 100%);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 86%);
  opacity: 0.2;
}

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

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

main,
.site-header,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-top: 18px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(8, 14, 27, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #04111d;
  font-weight: 700;
}

.brand strong,
.section-heading h2,
.hero h1,
.hero-card h2,
.contact-card h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a:hover,
.social-row a:hover,
.project-links a:hover,
.link-card:hover {
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  padding: 42px 0 12px;
  align-items: center;
}

.hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    background: linear-gradient(
      120deg,
      var(--text) 0%,
      var(--text) 40%,
      rgba(99, 242, 192, 0.92) 68%,
      var(--accent-3) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 24px;
  color: var(--muted);
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #4dc6ff);
  color: #04111d;
  font-weight: 700;
}

.button-secondary {
  border-color: var(--card-border);
  background: rgba(255, 255, 255, 0.02);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  color: var(--muted);
}

.hero-card,
.content-card,
.skill-card,
.stat-card,
.project-card,
.edu-card,
.timeline-item,
.contact-card,
.link-card {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  overflow: hidden;
  border-radius: 30px;
}

.hero-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  border-bottom: 1px solid var(--card-border);
}

.hero-card-body {
  padding: 22px;
}

.hero-card-body h2 {
  margin: 6px 0 10px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-card-body p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}

.stat-card {
  padding: 18px 20px;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 242, 192, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
}

.stat-card span {
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  padding: 32px 0;
  align-items: start;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.content-card,
.skill-card,
.edu-card {
  border-radius: 24px;
  padding: 22px;
}

.skill-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.skill-card:hover {
  transform: translateY(-2px);
  border-color: rgba(128, 167, 255, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.content-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.skills-grid,
.education-grid,
.link-grid,
.project-grid {
  display: grid;
  gap: 16px;
}

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

.skill-card h3,
.edu-card h3,
.timeline-item h3,
.project-card h3,
.link-card strong {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.project-badge,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.pill,
.project-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(99, 242, 192, 0.12);
}

.timeline-period,
.timeline-org,
.edu-card p,
.project-card p,
.link-card span,
.contact-note {
  color: var(--muted);
}

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

.edu-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-2);
}

.filter-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.filter-row-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.filter-row-scroll::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  position: relative;
  z-index: 1;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  gap: 10px;
  min-height: 42px;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 242, 192, 0.28);
}

.filter-label {
  display: inline-flex;
  align-items: center;
}

.filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
}

.filter-chip.is-active {
  color: #03131b;
  background: linear-gradient(135deg, var(--accent), #73b0ff);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(99, 242, 192, 0.16);
}

.filter-chip.is-active .filter-count {
  background: rgba(3, 19, 27, 0.16);
  color: #03131b;
}

.filter-active-bar {
  position: absolute;
  left: 6px;
  top: 6px;
  height: calc(100% - 12px);
  width: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99, 242, 192, 0.22), rgba(115, 176, 255, 0.22));
  border: 1px solid rgba(99, 242, 192, 0.18);
  box-shadow: 0 12px 35px rgba(99, 242, 192, 0.1);
  transition: transform 0.28s ease, width 0.28s ease, height 0.28s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.filter-active-bar.is-visible {
  opacity: 1;
}

.filter-count.count-pop,
.projects-counter.count-pop {
  animation: countPop 0.35s ease;
}

@keyframes countPop {
  0% {
    transform: scale(0.86);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.projects-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 19, 35, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.projects-kicker {
  margin: 0 0 6px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.projects-header h3,
.projects-spotlight h3,
.project-empty h3 {
  margin: 0;
  font-family: "IBM Plex Serif", Georgia, serif;
}

.projects-counter {
  min-width: 90px;
  display: grid;
  justify-items: center;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
}

.projects-counter strong {
  font-size: 1.8rem;
  line-height: 1;
}

.projects-counter span {
  color: var(--muted);
  font-size: 0.9rem;
}

.projects-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(99, 242, 192, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-spotlight p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.spotlight-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.projects-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.projects-meta strong {
  color: var(--text);
}

.project-empty {
  padding: 20px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 242, 192, 0.16), transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 242, 192, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.project-card.is-hidden {
  opacity: 0.35;
}

.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.project-top-copy h3 {
  margin-bottom: 0;
}

.project-summary {
  margin-top: 8px;
}

.project-tag-row {
  margin-top: 10px;
}

.project-card p {
  line-height: 1.65;
}

.project-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.project-link::after {
  content: "↗";
  font-size: 0.9rem;
}

.project-detail-button {
  margin-top: 18px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(99, 242, 192, 0.24);
  border-radius: 999px;
  background: rgba(99, 242, 192, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.project-detail-button:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 242, 192, 0.45);
  background: rgba(99, 242, 192, 0.14);
}

.project-detail-button::after {
  content: " →";
  margin-left: 2px;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.project-detail-button:hover::after {
  transform: translateX(3px);
}

.filter-chip:focus-visible,
.button:focus-visible,
.project-modal-close:focus-visible {
  outline: 2px solid rgba(99, 242, 192, 0.9);
  outline-offset: 3px;
}

.project-card.is-visible {
  opacity: 1;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 22px;
  padding: 20px;
  min-height: 150px;
}

.link-card strong {
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 40px 0 60px;
  padding: 26px 24px;
  border-radius: 28px;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.notice.success {
  border-color: rgba(99, 242, 192, 0.28);
  background: rgba(99, 242, 192, 0.08);
  color: #d6fff2;
}

.notice.error {
  border-color: rgba(255, 132, 132, 0.28);
  background: rgba(255, 132, 132, 0.08);
  color: #ffe1e1;
}

.notice a {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(4, 10, 20, 0.45);
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(99, 242, 192, 0.5);
  box-shadow: 0 0 0 4px rgba(99, 242, 192, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form .button-primary {
  justify-self: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-modal[hidden] {
  display: none;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(12px);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at top right, rgba(99, 242, 192, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(18, 27, 47, 0.98), rgba(10, 16, 31, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  animation: modalRise 0.22s ease-out;
}

.project-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.project-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-right: 48px;
}

.project-modal-summary {
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
  display: block;
  margin-top: 10px;
}

.project-modal-copy {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.project-modal-section-item + .project-modal-section-item {
  margin-top: 14px;
}

.project-modal-section-item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.project-modal-section-item ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.project-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 22px;
}

.project-modal-main,
.project-modal-side {
  display: grid;
  gap: 16px;
}

.project-modal-section {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.project-modal-section h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.project-modal-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.project-modal-list li + li {
  margin-top: 8px;
}

.project-modal-link {
  width: 100%;
}

.project-modal-link + .project-modal-link {
  margin-top: 10px;
}

.project-modal-side p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-open {
  overflow: hidden;
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.backdrop {
  position: fixed;
  z-index: -1;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.backdrop-a {
  width: 360px;
  height: 360px;
  top: 120px;
  right: -110px;
  background: radial-gradient(circle, rgba(99, 242, 192, 0.18), transparent 62%);
}

.backdrop-b {
  width: 420px;
  height: 420px;
  bottom: 80px;
  left: -150px;
  background: radial-gradient(circle, rgba(128, 167, 255, 0.18), transparent 64%);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.link-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 242, 192, 0.2);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

[data-hidden="true"] {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero,
  .section-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .projects-header,
  .projects-spotlight {
    align-items: start;
  }

  .projects-header {
    flex-direction: column;
  }

  .spotlight-actions {
    justify-content: flex-start;
  }

  .project-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    gap: 12px 16px;
  }

  .stats-grid,
  .skills-grid,
  .education-grid,
  .project-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .contact-card {
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .projects-panel {
    padding: 18px;
  }

  .projects-spotlight {
    padding: 16px;
  }

  .project-modal {
    padding: 14px;
  }

  .project-modal-panel {
    padding: 20px;
  }

  .project-modal-header {
    padding-right: 44px;
    flex-direction: column;
  }
}
