/*
 Hot Buttons
========================================================================== */
.wp-block-meta-hot-buttons .container {
  --auto-grid-min-size: 190px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  gap: 20px;
}
.wp-block-meta-hot-buttons a.btn {
  border: 1px solid rgba(19, 20, 83, 0.1);
  border-radius: var(--wp--custom--border--radius);
  padding: 48px 24px;
  font-family: var(--wp--preset--font-family--primary);
  text-decoration: none;
  color: var(--wp--custom--color--heading);
  text-align: center;
  font-size: clamp(1.25rem, 18.8px + 0.25vw, 1.375rem);
  line-height: 1;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease;
}
.wp-block-meta-hot-buttons a.btn:hover {
  box-shadow: 0 0 0 1px #3639ff;
  border-color: #3639ff;
}
.wp-block-meta-hot-buttons a.btn:hover img, .wp-block-meta-hot-buttons a.btn:hover svg {
  opacity: 1;
  filter: grayscale(0);
}
.wp-block-meta-hot-buttons a.btn:hover svg path {
  fill: #3639ff;
}
.wp-block-meta-hot-buttons figure {
  margin: 0 auto 24px auto;
  padding: 0;
  width: 48px;
  height: 32px;
  position: relative;
}
.wp-block-meta-hot-buttons figure svg, .wp-block-meta-hot-buttons figure img {
  transition: all 0.2s ease;
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
  opacity: 0.35;
  filter: grayscale(1);
}
