:root {
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  color: #19324b;
  background: #f4f7fa;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  display: flex;
}
aside {
  width: 230px;
  min-height: 100vh;
  padding: 35px 25px;
  background: #fff;
  border-right: 1px solid #dfe7ed;
}
.brand {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #186b68;
}
.brand span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  margin: 10px 0 48px;
  color: #72848f;
}
nav a {
  display: block;
  padding: 14px 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #346066;
  border-radius: 8px;
}
nav a:first-child {
  background: #e8f4f1;
}
aside p {
  margin-top: 70px;
  color: #81949c;
  line-height: 1.9;
}
main {
  max-width: 1250px;
  padding: 0 48px;
  width: 100%;
  margin: auto;
}
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe7ed;
  font-size: 11px;
  letter-spacing: 1.4px;
}
.button,
button {
  background: #166e68;
  color: white;
  padding: 11px 18px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0;
}
.intro {
  padding: 48px 0 25px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #268075;
  font-weight: 700;
}
h1 {
  font-size: 38px;
  letter-spacing: -1.2px;
  margin: 14px 0;
}
p {
  font-size: 15px;
  line-height: 1.7;
  color: #657d8e;
}
h2 {
  font-size: 21px;
  margin: 0 0 10px;
}
h3 {
  font-size: 16px;
}
.notice {
  padding: 16px 20px;
  background: #e8f0f4;
  border: 1px solid #dbe5eb;
  border-radius: 8px;
  font-size: 14px;
  color: #546c7e;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 26px 0;
}
.stats article,
.panel {
  background: white;
  border: 1px solid #dfe7ed;
  border-radius: 12px;
  padding: 25px;
}
.stats span {
  display: block;
  font-size: 13px;
  color: #6f8391;
}
.stats strong {
  display: block;
  margin-top: 15px;
  font-size: 30px;
  font-weight: 600;
}
.panel {
  margin: 22px 0;
  padding: 30px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.empty {
  text-align: center;
  padding: 55px 10px;
  color: #8395a0;
}
.job {
  padding: 23px 0;
  border-bottom: 1px solid #e4ebef;
}
.job h3 {
  margin: 0 0 8px;
}
.job a {
  color: #167569;
}
.job small {
  display: block;
  color: #647a89;
  margin-top: 9px;
}
.job p {
  white-space: pre-wrap;
}
label {
  display: block;
  margin: 22px 0;
  font-size: 13px;
  font-weight: 600;
}
input,
textarea {
  display: block;
  margin-top: 10px;
  width: 100%;
  padding: 13px;
  border: 1px solid #d8e3e9;
  border-radius: 7px;
  background: #f8fafb;
  color: #36546a;
  font: inherit;
  line-height: 1.7;
}
li {
  padding: 7px;
  color: #587183;
  font-size: 14px;
}
footer {
  padding: 25px 0 40px;
  color: #8a9ca8;
  font-size: 12px;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #e5ad4f;
  outline-offset: 3px;
}
@media (max-width: 760px) {
  aside {
    display: none;
  }
  main {
    padding: 0 20px;
  }
  .stats {
    gap: 8px;
  }
  .stats article {
    padding: 15px;
  }
  .stats strong {
    font-size: 23px;
  }
  h1 {
    font-size: 30px;
  }
  .panel {
    padding: 20px;
  }
}
