.booklets {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #171717;
  color: #fff;
}

.booklets::before {
  content: "USSG";
  position: absolute;
  right: -35px;
  top: -65px;
  color: rgba(255, 255, 255, 0.025);
  font: 800 260px/1 var(--display);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.booklets .container {
  position: relative;
  z-index: 1;
}

.booklets-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.booklets-heading .eyebrow {
  color: #e79198;
}

.booklets-heading h2 {
  margin: 0;
}

.booklets-heading h2 em {
  color: #fff;
}

.booklets-heading > p {
  margin: 0 0 7px;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
}

.booklet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booklet-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 52px;
  gap: 22px;
  align-items: center;
  min-height: 190px;
  padding: 28px;
  border: 1px solid #3b3b3b;
  background: #222;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.booklet-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: width .25s ease;
}

.booklet-card:hover,
.booklet-card:focus-visible {
  color: #fff;
  border-color: #6b3035;
  background: #282828;
  transform: translateY(-5px);
}

.booklet-card:hover::after,
.booklet-card:focus-visible::after {
  width: 100%;
}

.booklet-card > .booklet-category {
  display: grid;
  place-items: center;
  width: 88px;
  height: 104px;
  background: var(--red);
  color: #fff;
  font: 800 37px/1 var(--display);
  box-shadow: 7px 7px 0 #0d0d0d;
}

.booklet-content > small {
  color: #e79198;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.booklet-content h3 {
  margin: 5px 0 7px;
  color: #fff;
  font-size: 32px;
}

.booklet-content p {
  min-height: 38px;
  margin: 0 0 13px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.55;
}

.booklet-content strong {
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.booklet-content strong i {
  margin-left: 7px;
  color: #e79198;
  transition: transform .2s ease;
}

.booklet-card:hover .booklet-content strong i {
  transform: translateX(5px);
}

.booklet-card > .booklet-pages {
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  color: #fff;
  font: 800 25px/0.8 var(--display);
  text-align: center;
}

.booklet-pages small {
  color: #888;
  font: 600 8px/1 var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 991px) {
  .booklets-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .booklet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .booklets {
    padding: 76px 0;
  }
  .booklets-heading {
    margin-bottom: 30px;
  }
  .booklet-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    min-height: 155px;
    padding: 20px;
  }
  .booklet-card > .booklet-category {
    width: 66px;
    height: 88px;
    font-size: 29px;
    box-shadow: 5px 5px 0 #0d0d0d;
  }
  .booklet-content h3 {
    font-size: 27px;
  }
  .booklet-content p {
    min-height: 0;
  }
  .booklet-card > .booklet-pages {
    display: none;
  }
}
