.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-list li {
  position: relative;
  transition:
    color 1s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-list:hover li {
  opacity: 0.6;
  color: var(--nav-item-color);
}

.focus-list:hover li:hover {
  opacity: 1;
  color: var(--text-color);
}

.focus-list li::before {
  transition: color 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-list:hover li::before {
  color: var(--nav-item-color);
}

.focus-list:hover li:hover::before {
  color: var(--accent-color);
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content-section ul li {
  font-size: 16px;
  font-weight: 420;
  line-height: 1.85;
  color: var(--content-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.content-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--nav-item-color);
  font-weight: 600;
  font-size: 1em;
  line-height: inherit;
  transition: color 0.2s ease;
}

.content-section ul li:hover::before {
  color: var(--accent-color);
}

.content-section ul li:hover {
  color: var(--text-color);
}

.content-section .text-link {
  color: var(--accent-color);
  font-weight: 420;
  position: relative;
  background-size: 100% 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.content-section .text-link:hover {
  border-bottom-color: var(--accent-color);
  opacity: 0.85;
  transform: translateY(-1px);
}

.content-section strong {
  font-weight: 500;
  color: var(--heading-color);
}

.content-section p strong {
  background-color: var(--header-bg);
  color: var(--heading-color);
  padding: 4px 9px;
  border-radius: 9px;
  border: 1px solid var(--header-bg-border);
  font-size: 0.9em;
  font-weight: 500;
  display: inline-block;
  line-height: 1.3;
  vertical-align: baseline;
  margin: 0 2px;
}

.content-section {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto 80px;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.content-section .page-title {
  font-size: 30px;
  font-weight: 600;
  font-family: "geist", sans-serif;
  margin-bottom: 15px;
  color: var(--heading-color);
  text-align: left;
  line-height: 1.3;
  padding-bottom: 0;
  margin-top: 30px;
}

.content-section .page-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  margin-top: 8px;
  border-radius: 1px;
}

.content-section .subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--nav-item-color);
  margin-bottom: 45px;
  text-align: left;
  line-height: 1.65;
}

.content-section h2 {
  font-size: 23px;
  font-weight: 550;
  margin-top: 55px;
  margin-bottom: 22px;
  text-align: left;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.content-section h2:first-of-type {
  margin-top: 0;
}

.content-section h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 16px;
  font-weight: 420;
  line-height: 1.85;
  color: var(--content-color);
}

.content-section .descriptive-paragraph {
  padding-left: 0;
  position: relative;
  border-left: none;
  margin-bottom: 20px;
  background-color: transparent;
  border-radius: 0;
}

.content-section .descriptive-paragraph:hover {
  transform: none;
  background-color: transparent;
}

@media (max-width: 1200px) {
  .content-section {
    max-width: 720px;
  }
}

@media (max-width: 1024px) {
  .content-section {
    padding: 0 40px;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .content-section {
    max-width: 100%;
    padding: 0 20px;
  }

  .content-section .page-title {
    font-size: 28px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section h3 {
    font-size: 18px;
  }

  .content-section p,
  .content-section ul li {
    font-size: 16px;
  }
}