﻿.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-list li {
  position: relative;
  transition:
    color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-list:hover li {
  opacity: 0.45;
  color: var(--nav-item-color);
}

.focus-list:hover li:hover {
  opacity: 1;
  color: var(--text-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 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;
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition),
    color var(--theme-transition);
}

.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 .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 h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--subheading-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;
}

.content-section .text-link {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: var(--accent-color);
  font-weight: 420;
  text-decoration: none;
  transition:
    color var(--theme-transition),
    opacity 0.24s ease,
    transform 0.24s ease;
}

.content-section .text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  transform: translateX(-50%);
  transition:
    width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    background-color var(--theme-transition);
}

.content-section .text-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.content-section .text-link:hover::after,
.content-section .text-link:focus-visible::after {
  width: 100%;
}

@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;
  }
}
