/* Hide specific footer column on tablets (Astra tablet breakpoint) */
@media (max-width: 921px) {
  .hide-footer-col-tablet {
    display: none !important;
  }

  .wp-block-column {
    text-align: center;

    :is(h1, h2, h3, h4, h5, h6) {
      text-align: inherit;
    }
  }
}

/* Align footer column content to the right */
.site-footer {

  .wp-block-columns.is-layout-flex {
    justify-content: flex-end;
  }

  /* Footer Hills logo hover animation */
  .wp-block-image img[src*="HCR-Hills-Logo"] {
    transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
    will-change: transform;

    &:hover {
      transform: translateY(-6px) scale(1.03);
      filter: drop-shadow(0 12px 18px rgba(145, 125, 186, 0.35));
    }
  }
}