.tcr5-guide-grid .guide-bucket {
  min-height: 320px;
  height: 100%;
  padding: 0;
  align-items: stretch;
}

.tcr5-guide-grid .guide-bucket > img {
  transition: transform .3s ease;
}

.tcr5-guide-grid .guide-bucket .content {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  color: #fff;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: none;
}

.tcr5-guide-grid .guide-bucket .content h3 {
  width: 100%;
  margin: 0;
  padding: 1rem 1.25rem 1.05rem;
  border-bottom: 3px solid #D92732;
  color: #fff;
  background: #0A4B78;
  box-shadow: 0 8px 20px rgba(4, 22, 45, .2);
  font-size: 1.2rem;
  line-height: 1.2;
  transition: background-color .3s ease;
}

.tcr5-guide-grid .guide-bucket .content .button {
  display: inline-flex;
  width: auto;
  align-items: center;
  align-self: flex-start;
  margin: 0 0 1rem 1rem;
  padding: .7rem 1rem .75rem;
  border-left: 4px solid #D92732;
  color: #fff;
  background: #003566;
  box-shadow: 0 10px 24px rgba(4, 22, 45, .28);
  opacity: 1;
  transition: background-color .3s ease, transform .3s ease;
}

.tcr5-guide-grid .guide-bucket:hover > img,
.tcr5-guide-grid .guide-bucket:focus > img {
  transform: scale(1.035);
}

.tcr5-guide-grid .guide-bucket:hover .content,
.tcr5-guide-grid .guide-bucket:focus .content {
  transform: none;
}

.tcr5-guide-grid .guide-bucket:hover .content h3,
.tcr5-guide-grid .guide-bucket:focus .content h3 {
  background: #003566;
}

.tcr5-guide-grid .guide-bucket:hover .content .button,
.tcr5-guide-grid .guide-bucket:focus .content .button {
  background: #D92732;
  transform: translateY(-3px);
}

.tcr5-guide-grid .guide-bucket:focus-visible {
  outline: 3px solid #D92732;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tcr5-guide-grid .guide-bucket > img,
  .tcr5-guide-grid .guide-bucket .content h3,
  .tcr5-guide-grid .guide-bucket .content .button {
    transition: none;
  }
}
