:root {
  --black: #07080a;
  --panel: #0f1115;
  --panel-soft: #151820;
  --white: #ffffff;
  --paper: #08090b;
  --muted: #c8cbd0;
  --muted-dark: #5a5f69;
  --line: #2c3038;
  --yellow: #ffd400;
  --yellow-deep: #e4b900;
  --danger: #b3261e;
  --max: 1080px;
  --radius: 8px;
  --header-height: 72px;
  --anchor-offset: var(--header-height);
  --viewport-height: 100svh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

button,
input,
textarea {
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 8, 10, 0.94);
  backdrop-filter: blur(12px);
}

.nav-bar,
.site-footer,
.section-inner,
.admin-main,
.admin-header {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav-bar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-links,
.nav-contact,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.phone-link,
.site-footer a,
.back-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.phone-link:hover,
.site-footer a:hover,
.back-link:hover {
  color: var(--yellow);
}

.brand-mark {
  justify-self: center;
  padding: 10px 0;
}

.brand-mark img {
  width: clamp(160px, 20vw, 250px);
}

.nav-contact {
  justify-content: flex-end;
}

.language-switcher,
.footer-languages {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-menu-button {
  display: none;
}

.language-menu-options {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-switcher {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.language-switcher a,
.footer-languages a {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.language-switcher a.active,
.footer-languages a.active {
  background: var(--yellow);
  color: #111318;
}

.hero {
  height: calc(100vh - var(--header-height));
  height: calc(var(--viewport-height) - var(--header-height));
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(3, 4, 6, 0.92) 44%, rgba(4, 5, 7, 0.48)),
    url("/assets/hero-industrial.png");
  background-position: center right;
  background-size: cover;
  border-bottom: 4px solid var(--yellow);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  max-height: 100%;
  margin: 0 auto;
  overflow-y: auto;
  padding: clamp(44px, 7vh, 72px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.admin-intro h1,
.login-panel h1,
.error-main h1 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.55;
}

.hero-actions,
.section-heading-row,
.admin-intro,
.admin-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 9px 15px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  background: var(--yellow);
  color: #121212;
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.16);
}

.button-primary:hover {
  background: #ffe04b;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
}

.button-secondary.dark:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-danger {
  background: var(--danger);
  color: var(--white);
}

.section {
  height: calc(100vh - var(--header-height));
  height: calc(var(--viewport-height) - var(--header-height));
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
  scroll-margin-top: 0;
}

.section > .section-inner {
  max-height: 100%;
  min-height: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.gallery-section > .section-inner {
  display: flex;
  flex-direction: column;
  width: min(var(--max), calc(100% - 32px));
  max-height: none;
  overflow: visible;
  scrollbar-gutter: auto;
}

.gallery-section {
  height: auto;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(var(--viewport-height) - var(--header-height));
  overflow: visible;
}

.gallery-section .section-heading-row,
.gallery-section .gallery-more-wrap {
  flex: 0 0 auto;
}

.section-light {
  background: var(--paper);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--black);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-card,
.project-card,
.empty-gallery,
.contact-panel,
.admin-panel,
.login-panel,
.admin-project {
  border-radius: var(--radius);
}

.service-card {
  min-height: 190px;
  padding: 21px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #11141a, #0a0b0e);
}

.service-rule {
  display: block;
  width: 60px;
  height: 4px;
  margin-bottom: 26px;
  background: var(--yellow);
}

.service-card h3,
.project-card h3,
.empty-gallery h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.service-card h3 {
  color: var(--white);
}

.service-card p,
.project-card p,
.empty-gallery p,
.contact-section p,
.muted {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading-row {
  justify-content: space-between;
  align-items: end;
}

.section-dark .section-heading-row h2 {
  color: var(--white);
}

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

.gallery-section .project-grid {
  flex: none;
  min-height: auto;
  overflow: visible;
  overscroll-behavior: auto;
  padding-right: 0;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-card-trigger {
  display: grid;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.project-card-trigger:hover .project-title {
  color: var(--yellow);
}

.project-card img,
.project-card-trigger img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #050506;
}

.project-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.project-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.project-finished {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-finished span {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

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

body.modal-open {
  overflow: hidden;
}

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

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #08090b;
}

.project-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.66);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.project-modal-media {
  position: relative;
  min-height: 420px;
  background: #020203;
}

.project-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.project-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.project-modal-nav.previous {
  left: 12px;
}

.project-modal-nav.next {
  right: 12px;
}

.project-modal-body {
  align-self: center;
  padding: 28px;
}

.project-modal-body h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.project-modal-body p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-gallery {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.empty-gallery p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: #050506;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #0d0f13;
  color: var(--white);
}

.contact-panel span,
.contact-methods span,
.company-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-methods a {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #08090b;
}

.contact-methods strong,
.company-details strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-methods strong {
  overflow-wrap: anywhere;
}

.company-details strong {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: normal;
}

.company-details {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer span {
  display: block;
  margin-top: 4px;
}

.admin-page {
  min-height: 100vh;
  background: #0a0b0d;
}

.admin-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-brand img,
.login-logo img {
  width: min(220px, 70vw);
}

.admin-main {
  padding: 30px 0 56px;
}

.admin-intro {
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-intro h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.admin-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-panel {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.admin-panel h2 {
  margin: 0;
}

.admin-panel > h2 {
  margin-bottom: 22px;
}

.admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-count {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.stack-form,
.project-form {
  display: grid;
  gap: 16px;
}

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

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

.project-form button,
.stack-form button {
  justify-self: start;
}

.project-form label,
.stack-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.project-form label:nth-child(3),
.project-form label:nth-child(4) {
  align-content: start;
}

.project-form textarea,
.project-form input,
.stack-form input {
  width: 100%;
  border: 1px solid #343944;
  background: #08090b;
  color: var(--white);
  padding: 12px;
}

.project-form textarea:focus,
.project-form input:focus,
.stack-form input:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.admin-project-list {
  display: grid;
  gap: 18px;
}

.admin-project {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0e12;
}

.admin-project[open] {
  border-color: rgba(255, 212, 0, 0.42);
}

.admin-project-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}

.admin-project-summary::-webkit-details-marker {
  display: none;
}

.admin-project-summary img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.admin-project-summary-meta {
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.admin-project-summary-meta strong {
  color: var(--white);
  font-size: 1.1rem;
}

.summary-edit {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--yellow);
  font-weight: 900;
}

.admin-project[open] .summary-edit {
  background: var(--yellow);
  color: #101010;
}

.admin-project-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 0 16px 16px;
}

.delete-form {
  align-self: end;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.7)),
    url("/assets/hero-industrial.png") center / cover;
}

.login-panel {
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(12, 14, 18, 0.94);
}

.login-logo {
  display: block;
  margin-bottom: 26px;
}

.login-panel h1 {
  margin-bottom: 22px;
  font-size: 2.1rem;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
}

.flash {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.flash-success {
  border: 1px solid #4b8d61;
  background: #14291d;
  color: #d7f4df;
}

.flash-error {
  border: 1px solid #95443f;
  background: #321817;
  color: #ffe0dd;
}

.error-main {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 64px 16px;
  text-align: center;
}

.error-main section {
  max-width: 620px;
}

.error-main p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand language"
      "links links";
    gap: 10px 14px;
    min-height: auto;
    padding: 10px 0 12px;
  }

  .nav-links {
    grid-area: links;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .brand-mark {
    grid-area: brand;
    justify-self: start;
    padding: 0;
  }

  .brand-mark img {
    width: clamp(150px, 42vw, 210px);
  }

  .nav-contact {
    grid-area: language;
    justify-content: flex-end;
    justify-self: end;
    flex-wrap: nowrap;
  }

  .hero {
    background-position: center;
  }

  .service-grid,
  .contact-grid,
  .contact-methods,
  .company-details,
  .project-form,
  .project-modal-panel,
  .admin-project-summary,
  .admin-project-editor {
    grid-template-columns: 1fr;
  }

  .project-modal-panel {
    max-height: 90vh;
  }

  .project-modal-media {
    min-height: 300px;
  }

  .admin-project-summary {
    gap: 12px;
  }

  .delete-form {
    align-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .site-header.is-compact {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 8, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  }

  .nav-bar {
    width: min(var(--max), calc(100% - 24px));
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas: "brand";
    gap: 0;
    min-height: 64px;
    padding: 10px 0;
    transition: min-height 220ms ease, padding 220ms ease;
  }

  .site-header.is-compact .nav-bar {
    min-height: 46px;
    padding: 5px 0;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    justify-self: center;
  }

  .brand-mark img {
    width: clamp(152px, 56vw, 206px);
    transition: width 220ms ease;
  }

  .site-header.is-compact .brand-mark img {
    width: clamp(120px, 42vw, 158px);
  }

  .nav-contact {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 12;
    justify-content: flex-end;
    justify-self: auto;
    transform: translateY(-50%);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-compact .nav-contact {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateY(-4px);
    visibility: hidden;
  }

  .language-switcher {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .language-menu-button {
    width: 38px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(8, 9, 11, 0.9);
    color: var(--yellow);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .language-menu-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .language-menu-button:hover,
  .language-switcher.is-open .language-menu-button {
    border-color: rgba(255, 212, 0, 0.55);
    background: #111318;
  }

  .language-menu-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 116px;
    display: grid;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(8, 9, 11, 0.98);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
    visibility: hidden;
  }

  .language-switcher.is-open .language-menu-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .language-switcher a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  .footer-languages a {
    min-width: 28px;
    padding: 5px 6px;
    font-size: 0.72rem;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 24px));
    padding: clamp(28px, 6vh, 44px) 0;
  }

  .hero {
    height: calc(100vh - var(--header-height));
    height: calc(var(--viewport-height) - var(--header-height));
    min-height: 0;
    overflow: hidden;
  }

  .hero-inner,
  .section > .section-inner,
  .gallery-section > .section-inner,
  .gallery-section .project-grid {
    max-height: none;
    overflow: visible;
    scrollbar-gutter: auto;
  }

  .section {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(var(--viewport-height) - var(--header-height));
    overflow: visible;
  }

  .gallery-section .project-grid {
    flex: none;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(1.88rem, 10vw, 2.35rem);
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions .button,
  .section-heading-row .button,
  .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading-row,
  .site-footer,
  .admin-intro,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .project-modal {
    padding: 14px;
  }

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

  .project-modal-body h3 {
    font-size: 1.28rem;
  }
}
