.card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  background-color: var(--gray-200);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--gray-300);
  box-shadow: var(--shadow-elevation-2);
  container-type: inline-size;
}

.card .card-image {
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.card .text-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

@container (min-width: 21.25rem) {

.card .text-content {
    padding: 12px;
    gap: 12px;
}
  }

@container (min-width: 31.25rem) {

.card .text-content {
    padding: 16px;
    gap: 16px;
}
  }

.card .title,
.card .title a,
.card .title a:visited {
  color: var(--primary-800);
  -webkit-text-decoration: none;
  text-decoration: none;
  margin: 0;
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-h4);
  line-height: var(--font-line-height-h4);
  letter-spacing: var(--font-letterspacing-h4);
}

@container (min-width: 21.25rem) {

.card .title,
.card .title a,
.card .title a:visited {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-h3);
    line-height: var(--font-line-height-h3);
    letter-spacing: var(--font-letterspacing-h3);
}
  }

@container (min-width: 31.25rem) {

.card .title,
.card .title a,
.card .title a:visited {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-h2);
    line-height: var(--font-line-height-h2);
    letter-spacing: var(--font-letterspacing-h2);
}
  }

.card .description {
  margin: 0;
  color: var(--primary-900);
  font-size: var(--font-size-text-md);
  font-weight: var(--font-weight-text-md);
  line-height: var(--font-line-height-text-md);
  letter-spacing: var(--font-letterspacing-text-md);
}

@container (min-width: 21.25rem) {

.card .description {
    font-size: var(--font-size-text-lg);
    font-weight: var(--font-weight-text-lg);
    line-height: var(--font-line-height-text-lg);
    letter-spacing: var(--font-letterspacing-text-lg);
}
  }

.card .metas {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: auto;
}

.card .metas .meta {
  color: var(--gray-700);
  font-size: var(--font-size-text-sm);
  font-weight: var(--font-weight-text-sm);
  line-height: var(--font-line-height-text-sm);
  letter-spacing: var(--font-letterspacing-text-sm);
}

@container (min-width: 21.25rem) {

.card .metas .meta {
    font-size: var(--font-size-text-md);
    font-weight: var(--font-weight-text-md);
    line-height: var(--font-line-height-text-md);
    letter-spacing: var(--font-letterspacing-text-md);
}
  }

.card .metas .meta.post-count,
.card .metas .meta.date {
  flex-shrink: 0;
}

.card .metas .meta.role,
.card .metas .meta.series,
.card .metas .meta.category {
  text-align: right;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.pagination {
  margin-top: var(--rhythm-lg);
  margin-bottom: var(--rhythm-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.pagination .lg {
  display: none;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: var(--font-size-text-lg);
  letter-spacing: var(--font-letterspacing-text-lg);
  font-weight: 700;
  color: var(--primary-900);
  background-color: transparent;
  border: 0.5px solid transparent;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-sm), color var(--transition-sm), border-color var(--transition-sm);
}

.pagination .ellipsis {
  font-size: var(--font-size-text-lg);
  letter-spacing: var(--font-letterspacing-text-lg);
  font-weight: 700;
  color: var(--primary-900);
}

.pagination a:focus-visible {
  background-color: var(--gray-200);
  border-color: var(--primary-900);
}

.pagination a[aria-current='page'] {
  background-color: var(--gray-200);
  color: var(--primary-800);
}

.pagination a[aria-disabled='true'] {
  color: var(--gray-400);
  cursor: not-allowed;
}

@media (hover: hover) {
  .pagination a:not([aria-current='page']):not([aria-disabled='true']):hover {
    border-color: var(--primary-900);
  }
}

.pagination .lg ul {
  display: flex;
  align-items: baseline;
  gap: 12px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination .lg ul li {
  margin: 0;
  padding: 0;
}

@media (min-width: 37.5em) {
  .pagination .lg {
    display: flex;
  }

  .pagination .sm {
    display: none;
  }
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: var(--rhythm-lg);
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.card-list-item {
  margin: 0;
  padding: 0;
}

.card-list-item > * {
  height: 100%;
}

@media (min-width: 40em) {
  .card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    grid-gap: var(--gutter);
    gap: var(--gutter);
  }
}

@media (min-width: 62.5em) {
  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 78.75em) {
  .card-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.skill-finder ul.skill-list {
  --rows: var(--skill-finder-rows, 3);
  --item-height: 76px;
  --item-width: 65px;
  --column-gap: 10px;
  --row-gap: 16px;
  scrollbar-gutter: stable;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(var(--item-width), 1fr));
  grid-template-rows: 76px;
  grid-template-rows: var(--item-height);
  grid-auto-rows: 76px;
  grid-auto-rows: var(--item-height);
  grid-column-gap: 10px;
  grid-column-gap: var(--column-gap);
  -moz-column-gap: 10px;
       column-gap: 10px;
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
  grid-row-gap: 16px;
  grid-row-gap: var(--row-gap);
  row-gap: 16px;
  row-gap: var(--row-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: var(--rhythm-md);
  margin-bottom: var(--rhythm-md);
  height: calc((3 * 76px) + ((3 - 1) * 16px));
  height: calc((var(--rows) * var(--item-height)) + ((var(--rows) - 1) * var(--row-gap)));
  max-height: 50vh;
  overflow-y: auto;
}

.skill-finder ul.skill-list li.skill {
  margin: 0;
  width: 100%;
}

.skill-finder ul.skills-list li.skill[aria-hidden="true"] {
  display: none;
}

.skill-finder ul.skill-list li.skill a {
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: var(--font-size-text-xs);
  font-weight: var(--font-weight-text-xs);
  line-height: var(--font-lineheight-text-xs);
  letter-spacing: var(--font-letterspacing-text-xs);
  color: var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin: 4px;
}

.skill-finder ul.skill-list li.skill a .icon {
  display: block;
  font-size: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1;
}

.skill-finder ul.skill-list li.skill a .skill-name {
  display: block;
  width: -moz-min-content;
  width: min-content;
}

.skill-finder .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
}

.skill-finder .search-input {
  flex: 1 1 auto;
  min-width: 120px;
}

.skill-finder .search-input input {
  width: 100%;
  padding: 8px 4px 8px 12px;
  font-family: var(--font-text);
  font-size: var(--font-size-text-md);
  border-radius: var(--radius-xs);
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
  color: var(--primary-900);
  box-shadow: var(--shadow-elevation-2);
}

.skill-finder .search-input input::-moz-placeholder {
  color: var(--gray-600);
}

.skill-finder .search-input input::placeholder {
  color: var(--gray-600);
}

.skill-finder .search-input input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
  height: 24px;
  width: 24px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIGZpbGw9IiNFRTkzODQiIHZpZXdCb3g9IjAgMCAxMjMuMDUgMTIzLjA1Ij48cGF0aCBkPSJtMTIxLjMyNSAxMC45MjUtOC41LTguMzk5Yy0yLjMtMi4zLTYuMS0yLjMtOC41IDBsLTQyLjQgNDIuMzk5TDE4LjcyNiAxLjcyNmMtMi4zMDEtMi4zMDEtNi4xMDEtMi4zMDEtOC41IDBsLTguNSA4LjVjLTIuMzAxIDIuMy0yLjMwMSA2LjEgMCA4LjVsNDMuMSA0My4xLTQyLjMgNDIuNWMtMi4zIDIuMy0yLjMgNi4xIDAgOC41bDguNSA4LjVjMi4zIDIuMyA2LjEgMi4zIDguNSAwbDQyLjM5OS00Mi40IDQyLjQgNDIuNGMyLjMgMi4zIDYuMSAyLjMgOC41IDBsOC41LTguNWMyLjMtMi4zIDIuMy02LjEgMC04LjVsLTQyLjUtNDIuNCA0Mi40LTQyLjM5OWE2LjEzIDYuMTMgMCAwIDAgLjEtOC42MDJ6Ii8+PC9zdmc+);
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.skill-finder .search-input input:disabled {
  background-color: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: not-allowed;
}

.skill-finder .search-input input:disabled::-moz-placeholder {
  color: var(--gray-400);
}

.skill-finder .search-input input:disabled::placeholder {
  color: var(--gray-400);
}

.skill-finder .category-dropdown {
  flex: 1 1 auto;
}

.skill-finder .category-dropdown select {
  width: 100%;
  padding: 8px 8px;
  font-family: var(--font-text);
  font-size: var(--font-size-text-md);
  border-radius: var(--radius-xs);
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
  color: var(--primary-900);
  box-shadow: var(--shadow-elevation-2);
}

@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
  .skill-finder .category-dropdown {
    position: relative;
  }

  .skill-finder .category-dropdown select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .skill-finder .category-dropdown::after {
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjRkZGNUU2IiBkPSJNNDQyLjIgOTMuMUwyNTYgMjc5LjNMNjkuOCA5My4xTDAgMTYyLjlsMjU2IDI1NmwyNTYtMjU2eiIvPjwvc3ZnPg==);
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 52%;
    right: 10px;
    width: 12px;
    height: 12px;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .skill-finder .category-dropdown:has(select:disabled)::after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjN0E4NDdDIiBkPSJNNDQyLjIgOTMuMUwyNTYgMjc5LjNMNjkuOCA5My4xTDAgMTYyLjlsMjU2IDI1NmwyNTYtMjU2eiIvPjwvc3ZnPg==);
  }
}

.skill-finder .category-dropdown select:disabled {
  background-color: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: not-allowed;
}

.skill-finder .category-radio {
  display: none;
}

.skill-finder .category-radio fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-finder .category-radio input[type="radio"] {
  opacity: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skill-finder .category-radio input[type="radio"]:focus-visible + label {
  outline: auto 1px;
  outline: -webkit-focus-ring-color auto 1px;
}

.skill-finder .category-radio label {
  display: inline-block;
  padding: 7.61px 8px;
  font-family: var(--font-text);
  font-size: var(--font-size-text-md);
  border-radius: var(--radius-xs);
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
  color: var(--primary-900);
  box-shadow: var(--shadow-elevation-2);
  cursor: pointer;
  transition: background-color var(--transition-md), border-color var(--transition-md), color var(--transition-md);
}

.skill-finder .category-radio input[type="radio"]:checked + label {
  background-color: var(--primary-700);
  border-color: var(--primary-800);
  color: var(--gray-100);
}

.skill-finder .category-radio fieldset:disabled label {
  background-color: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: not-allowed;
}

.skill-finder .category-radio fieldset:disabled input[type="radio"]:checked + label {
  background-color: var(--gray-300);
  border-color: var(--gray-300);
  color: var(--gray-500);
}

@media (hover: hover) {
  .skill-finder .category-radio label:hover {
    background-color: var(--primary-600);
    border-color: var(--primary-700);
    color: var(--gray-100);
  }

  .skill-finder .category-radio input[type="radio"]:checked + label:hover {
    background-color: var(--primary-800);
    border-color: var(--primary-900);
  }
}

@media (min-width: 62.5em) {
  .skill-finder .category-dropdown {
    display: none;
  }

  .skill-finder .category-radio {
    display: block;
    flex: 1 1 max-content;
  }

  .skill-finder .search-input {
    flex: 1 1 295px;
  }

  .skill-finder .controls {
    align-items: start;
    flex-wrap: nowrap;
  }
}

.blog-posts.sm {
  position: relative;
}

.blog-posts.sm .background {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: calc(100% + (var(--gap) * 2));
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-lg);
}

.blog-posts.sm.in-view .background {
  opacity: 1;
}

.blog-posts.sm .background > * {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.blog-posts.sm .background .v-light {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--gray-400) 20%,
      var(--gray-400) 80%,
      transparent 100%);
}

.blog-posts.sm .background .v-dark {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--gray-100) 0%,
      transparent 20%,
      transparent 80%,
      var(--gray-100) 100%);
}

.blog-posts.sm .background .h-dark {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      var(--gray-100) 0%,
      transparent 35%,
      transparent 65%,
      var(--gray-100) 100%);
}

.blog-posts.sm .card {
  box-shadow: var(--shadow-elevation-3);
}

.blog-posts.sm .inner {
  width: 100%;
  max-width: var(--body-max-width);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-posts.sm .inner > header h2 {
  text-align: center;
  color: var(--primary-700);
}

.blog-posts.sm .inner > header .more-link {
  display: none;
}

.blog-posts.sm .inner > .more-link {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-posts.sm .card-list {
  gap: 16px;
}

@media (max-width: 25em) {
  .blog-posts.sm .inner > header h2 {
    font-size: var(--font-size-h3);
  }
}

@media (min-width: 40em) {
  .blog-posts.sm .background .v-light {
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--gray-400) 65%,
        transparent 100%);
  }

  .blog-posts.sm .background .v-dark {
    background: linear-gradient(to bottom,
        var(--gray-100) 0%,
        transparent 50%,
        transparent 80%,
        var(--gray-100) 100%);
  }

  .blog-posts.sm .background .h-dark {
    background: linear-gradient(to right,
        var(--gray-100) 0%,
        transparent 50%,
        var(--gray-100) 100%);
  }

  .blog-posts.sm .inner > header {
    position: relative;
  }

  .blog-posts.sm .inner > header .more-link {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .blog-posts.sm .card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 24px;
    gap: 24px;
  }

  .blog-posts.sm .card-list .card-list-item:nth-child(3) {
    display: none;
  }

  .blog-posts.sm .card-list-item,
  .blog-posts.sm .card-list-item .card {
    height: 100%;
  }

  .blog-posts.sm .inner > .more-link {
    display: none;
  }
}

@media (min-width: 62.5em) {
  .blog-posts.sm {
    display: none;
  }

  .blog-posts.sm .card-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-posts.sm .card-list .card-list-item:nth-child(3) {
    display: block;
  }
}

@media (orientation: landscape) and (max-height: 42.1875em) {
  .blog-posts.sm {
    display: block;
  }
}
.toolbox {
	--scrollbar-thumb-color: var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background-color: var(--gray-200);
  border: 0.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevation-5);
  margin-left: 10px;
  margin-right: 10px;
  padding: 35px var(--gutter) 15px;
}

.toolbox > h2 {
  color: var(--primary-700);
}

.toolbox .skill-finder {
  width: 100%;
  max-width: var(--body-max-width);
  margin: 0 auto;
}

@media (max-width: 25em) {
  .toolbox > h2 {
    font-size: var(--font-size-h3);
  }
}

@media (min-width: 62.5em) {
  .toolbox {
    gap: 24px;
    padding: 75px var(--gutter);
  }
}

.projects {
  position: relative;
}

.projects .card {
  box-shadow: var(--shadow-elevation-3);
}

.projects .background {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: calc(100% + (var(--gap) * 2));
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-lg);
}

.projects.in-view .background {
  opacity: 1;
}

.projects .background > * {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.projects .background .v-light {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--gray-400) 20%,
      var(--gray-400) 80%,
      transparent 100%);
}

.projects .background .v-dark {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--gray-100) 0%,
      transparent 20%,
      transparent 80%,
      var(--gray-100) 100%);
}

.projects .background .h-dark {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      var(--gray-100) 0%,
      transparent 35%,
      transparent 65%,
      var(--gray-100) 100%);
}

.projects .inner {
  max-width: var(--body-max-width-with-gutter);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.projects .inner > header {
  margin-bottom: 16px;
}

.projects .inner > header h2 {
  text-align: center;
  margin: 0;
  color: var(--primary-700);
}

.projects .inner > header .more-link {
  display: none;
}

.projects .project-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects .project-item {
  margin: 0;
  padding: 0;
}

.projects .inner > .more-link {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 25em) {
  .projects .inner header > h2 {
    font-size: var(--font-size-h3);
  }
}

@media (min-width: 40em) {
  .projects .background .v-light {
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--gray-400) 65%,
        transparent 100%);
  }

  .projects .background .v-dark {
    background: linear-gradient(to bottom,
        var(--gray-100) 0%,
        transparent 50%,
        transparent 80%,
        var(--gray-100) 100%);
  }

  .projects .background .h-dark {
    background: linear-gradient(to right,
        var(--gray-100) 0%,
        transparent 50%,
        var(--gray-100) 100%);
  }

  .projects .inner > header {
    position: relative;
  }

  .projects .inner > header .more-link {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .projects .project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 24px;
    gap: 24px;
  }

  .projects .project-list .project-item:nth-child(3) {
    display: none;
  }

  .projects .project-item,
  .projects .project-item .card {
    height: 100%;
  }

  .projects .inner > .more-link {
    display: none;
  }
}

@media (min-width: 62.5em) {
  .projects .project-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects .project-list .project-item:nth-child(3) {
    display: block;
  }
}
.testimonials-list {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-item {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-item .header {
  display: flex;
  flex-flow: row;
  align-items: center;
  row-gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonial-item .header .name {
  margin: 0;
}

.testimonial-item .header .name a {
  color: var(--primary-900);
  transition: color var(--transition-lg);
}

.testimonial-item.in-view .header .name a {
  color: var(--primary-800);
}

@media (hover: hover) {
  .testimonial-item .header:hover .name a {
    color: var(--primary-600);
  }
}

.testimonial-item .header .name a:focus-visible {
  color: var(--primary-600);
}

.testimonial-item .header .relation,
.testimonial-item .header .org {
  color: var(--gray-700);
  font-size: var(--font-size-text-sm);
  line-height: var(--font-line-height-text-sm);
  font-weight: var(--font-weight-text-sm);
  letter-spacing: var(--font-letterspacing-text-sm);
  flex-shrink: 1;
}

.testimonial-item .header .details {
  flex: 1 1 fit-content;
  gap: 0.125rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  margin-left: 16px;
}

.testimonial-item .images {
  display: flex;
  gap: 8px;
}

.testimonial-item .avatar {
  width: 75px;
  height: 75px;
  flex: 0 0 75px;
  border-radius: 50%;
  border: 0.5px solid var(--primary-800);
  box-shadow: var(--shadow-elevation-3);
  filter: grayscale(100%);
  transition: filter var(--transition-lg);
}

.testimonial-item.in-view .avatar {
  filter: grayscale(0%);
}

@media (hover: hover) {
  .testimonial-item .header:hover .avatar {
    filter: grayscale(0%);
  }
}

.testimonial-item .header:has(.name a:focus-visible) .avatar {
  filter: grayscale(0%);
}

.testimonial-item .description {
  margin-left: 16px;
  max-width: var(--editorial-max-width);
  text-wrap: pretty;
}

.testimonial-item .description p {
  color: var(--gray-800);
  transition: color var(--transition-lg);
}

.testimonial-item.in-view .description p {
  color: var(--primary-900);
}

.testimonial-item .description blockquote {
  margin: 0;
  padding: 0;
  color: var(--primary-900);
  border-left: 4px solid var(--primary-900);
  transition: border-color var(--transition-lg);
  padding-left: 16px;
}

.testimonial-item:nth-child(even) {
  justify-content: end;
}

.testimonial-item:nth-child(even) .header {
  flex-direction: row-reverse;
  justify-content: end;
  margin-left: auto;
  margin-right: 0;
}

.testimonial-item:nth-child(even) .details {
  margin-left: 0;
  margin-right: 16px;
  align-items: end;
  text-align: right;
}

.testimonial-item:nth-child(even) .description {
  margin-left: auto;
  margin-right: 16px;
  text-align: right;
}

.testimonial-item:nth-child(even) .description blockquote {
  border-left: none;
  border-right: 4px solid var(--primary-900);
  padding-left: 0;
  padding-right: 16px;
}

.testimonial-item.in-view .description blockquote {
  border-color: var(--primary-800);
}

section.testimonials {
  width: 100%;
  max-width: var(--body-max-width);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

section.testimonials > h2 {
  color: var(--primary-700);
  text-align: center;
}

@media (max-width: 25em) {
  section.testimonials > h2 {
    font-size: var(--font-size-h3);
  }
}



