:root {
  --propellence-navy: #0a0f1e;
  --propellence-cloud: #f5f7fa;
  --propellence-slate: #d9dee7;
  --propellence-green: #8bc34a;
  --text-main: #222;
  --text-muted: #a0b4c8;
  --footer-bg: #333333;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

button,
a,
li,
span,
p {
  font-size: 1rem;
}

.content-wrap,
.site-header__inner,
.site-footer__inner {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 79px;
  background: #000;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 79px;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
  line-height: 0;
}

.site-logo img {
  width: 202px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.site-nav a {
  display: block;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #8bc34a;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.careers-hero {
  background: #000;
  text-align: center;
  padding: 70px 40px 50px;
}

.careers-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.careers-hero p {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto;
}

.open-positions {
  padding: 72px 0 0;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  text-align: left;
}

.job-table thead {
  color: rgba(0, 0, 0, 0.59);
}

.job-table th,
.job-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--propellence-slate);
  text-align: left;
}

.job-table .job-index {
  width: 40px;
  font-weight: 500;
  text-align: center;
}

.job-table tbody tr {
  cursor: pointer;
  transition: background 0.2s ease;
}

.job-table tbody tr:hover {
  background: var(--propellence-cloud);
}

.career-links {
  padding: 50px 40px;
}

.career-links .content-wrap {
  max-width: 960px;
}

.career-links a {
  color: var(--propellence-green);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.career-links span {
  margin: 0 8px;
}

.site-footer {
  min-height: 339px;
  background: var(--footer-bg);
  color: #fff;
  padding: 20px 0 60px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 300px minmax(280px, 1fr) 160px;
  gap: 56px;
  align-items: start;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 13px;
}

.footer-label,
.site-footer p,
.footer-phone {
  font-weight: 300;
}

.footer-label {
  margin-bottom: 10px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 50px;
  text-decoration: none;
}

.footer-phone svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.footer-column--address {
  margin-top: 50px;
}

.footer-column--address p:not(.footer-label) {
  margin-bottom: 18px;
}

.footer-column--social {
  margin-top: 50px;
}

.social-link {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.social-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .content-wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(940px, calc(100% - 32px));
  }

  .site-nav a {
    padding-inline: 14px;
  }
}

@media (max-width: 991px) {
  .content-wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(720px, calc(100% - 32px));
  }

  .site-nav a {
    padding-inline: 8px;
  }

  .site-footer__inner {
    grid-template-columns: 220px minmax(260px, 1fr) 120px;
    gap: 26px;
  }

  .footer-phone {
    margin-left: 24px;
  }
}

@media (max-width: 767px) {
  .content-wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(540px, calc(100% - 32px));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 260px;
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav a {
    padding: 10px 40px;
    font-size: 1.25rem;
  }

  .open-positions {
    padding-top: 53px;
  }

  .job-table thead {
    display: none;
  }

  .job-table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid var(--propellence-slate);
  }

  .job-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #eee;
    text-align: right;
  }

  .job-table td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    margin-right: 10px;
    font-weight: 600;
    text-align: left;
  }

  .job-table .job-index {
    width: auto;
  }

  .site-footer {
    min-height: 341px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }

  .footer-title {
    width: 121px;
    font-size: 1.111rem;
    margin-bottom: 2px;
  }

  .footer-phone {
    margin-top: 118px;
    margin-left: 0;
  }

  .footer-column--address {
    grid-column: 1 / 2;
    grid-row: 2;
    margin-top: -12px;
  }

  .footer-column--social {
    grid-column: 2 / 3;
    grid-row: 2;
    margin-top: 178px;
    justify-self: end;
    margin-right: 20px;
  }
}

@media (max-width: 575px) {
  .content-wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(340px, calc(100% - 32px));
  }

  .site-header__inner {
    min-height: 79px;
  }

  .site-logo img {
    width: 202px;
    height: 52px;
  }

  .careers-hero {
    padding-inline: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
