.product-library {
  padding: 2rem 0 4rem;
}

.product-library__panel {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  min-height: clamp(520px, 72vh, 760px);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  background: #fff;
  border: 1px solid #dee2e6;
}

.product-library__title {
  margin: 0 0 2rem;
  color: #e32125;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.product-library__accordion {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.product-library__item {
  overflow: hidden;
  border: 1px solid #dee2e6;
  border-radius: .1875rem;
}

.product-library__heading {
  margin: 0;
}

.product-library__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  color: #e32125;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-library__trigger:focus-visible,
.product-library__guide:focus-visible {
  outline: 0;
  outline-offset: 3px;
  box-shadow: 0 0 0 .2rem rgba(231, 66, 70, .5);
}

.product-library__arrow {
  width: 10px;
  height: 10px;
  margin-left: 1rem;
  border-right: 2px solid #e32125;
  border-bottom: 2px solid #e32125;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.product-library__trigger[aria-expanded="true"] .product-library__arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

.product-library__content {
  padding: 1rem 1.25rem 1.1rem;
  border-top: 1px solid #dee2e6;
}

.product-library__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.product-library__list li {
  position: relative;
  padding: .2rem 0 .2rem 1.25rem;
}

.product-library__list li::before {
  position: absolute;
  top: .65em;
  left: .15rem;
  width: .4rem;
  height: .4rem;
  background: #e32125;
  border-radius: 50%;
  content: '';
}

.product-library__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

.product-library__guide {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-width: 190px;
  padding: .75rem 1.75rem;
  color: #fff;
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  background: #e32125;
  border: 1px solid #e32125;
  border-radius: .1875rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
  transition: .5s cubic-bezier(.215, .61, .355, 1);
}

.product-library__guide:hover {
  color: #fff;
  background: #c5191c;
}

@media (max-width: 575.98px) {
  .product-library {
    padding: 1rem 0 2rem;
  }

  .product-library__panel {
    min-height: 0;
    padding: 1.25rem .9rem;
  }

  .product-library__title {
    margin-bottom: 1.5rem;
  }

  .product-library__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .product-library__guide {
    width: 100%;
  }
}
