

/* Let the homepage fill the viewport */
body.home,
body.home html {
  height: 100%;
}

/* Make site blocks a column layout only on home */
body.home .wp-site-blocks {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Header keeps natural height */
body.home .site-header {
  flex: 0 0 auto;
}

/* Hero fills the remaining visible space */
body.home .lp-hero {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

/* Parent container */
.card {
  position: relative; /* This is crucial - creates positioning context */
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Stretched link */
.stretched-link a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.no-decoration a
{
  text-decoration: none;
}