/* Interactive category descriptions and the extended keyword section. */
.category-grid article {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  background: #25132d;
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .22s ease, transform .22s ease;
  font-size: 12px;
  line-height: 1.4;
}

.category-detail em {
  margin-bottom: 8px;
  color: #f4b844;
  font: 700 22px/1 "Barlow Condensed", sans-serif;
  font-style: normal;
  text-transform: uppercase;
}

.category-grid article:hover,
.category-grid article:focus {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px #0008;
  outline: none;
}

.category-grid article:hover .category-detail,
.category-grid article:focus .category-detail {
  opacity: 1;
  transform: translateY(0);
}

.keyword-guide {
  padding: 95px clamp(34px, 7vw, 145px);
  background: #09070d;
}

.keyword-guide h2 {
  max-width: 1100px;
  font: 700 clamp(44px, 4.8vw, 76px)/1.02 "Barlow Condensed", sans-serif;
}

.keyword-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid #4b2a54;
  border-bottom: 1px solid #4b2a54;
}

.keyword-columns article {
  padding: 30px 30px 28px;
  border-right: 1px solid #4b2a54;
}

.keyword-columns article:first-child { border-left: 1px solid #4b2a54; }
.keyword-columns h3 { font: 700 34px/1.02 "Barlow Condensed", sans-serif; }
.keyword-columns p { color: #d0c5d4; line-height: 1.7; }
.keyword-columns b { color: #fff; }

@media (max-width: 900px) {
  .keyword-columns { grid-template-columns: 1fr; }
  .keyword-columns article,
  .keyword-columns article:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid #4b2a54; }
}

@media (max-width: 560px) {
  .keyword-guide { padding: 65px 25px; }
  .category-detail { padding: 13px; font-size: 11px; }
  .category-detail em { font-size: 18px; }
}
