.page-content {
  display: grid;
  grid-gap: 16px;
  padding: 26px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 16px;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.card::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.009) 11.7%,
    hsla(0, 0%, 0%, 0.034) 22.1%,
    hsla(0, 0%, 0%, 0.072) 31.2%,
    hsla(0, 0%, 0%, 0.123) 39.4%,
    hsla(0, 0%, 0%, 0.182) 46.6%,
    hsla(0, 0%, 0%, 0.249) 53.1%,
    hsla(0, 0%, 0%, 0.32) 58.9%,
    hsla(0, 0%, 0%, 0.394) 64.3%,
    hsla(0, 0%, 0%, 0.468) 69.3%,
    hsla(0, 0%, 0%, 0.54) 74.1%,
    hsla(0, 0%, 0%, 0.607) 78.8%,
    hsla(0, 0%, 0%, 0.668) 83.6%,
    hsla(0, 0%, 0%, 0.721) 88.7%,
    hsla(0, 0%, 0%, 0.762) 94.1%,
    hsla(0, 0%, 0%, 0.79) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 5) var(--e);
}

.card:nth-child(1)::before {
  background-image: url(../img/home-service/1.webp);
}

.card:nth-child(2)::before {
  background-image: url(../img/home-service/2.webp);
}

.card:nth-child(3)::before {
  background-image: url(../img/home-service/3.webp);
}

.card:nth-child(4)::before {
  background-image: url(../img/home-service/4.webp);
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 36px;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.content > * + * {
  margin-top: 16px;
}

.title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  min-height: 70px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.copy {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
  min-height: 48px; /* Fixed height for copy text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  cursor: pointer;
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: white;
  background-color: #210749;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn a {
  color: white;
  text-decoration: none;
}

.btn:hover {
  background-color: #48109b;
}

.btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .card::after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 120px)); /* Adjusted for consistent height */
  }

  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
  .card:focus-within {
    align-items: center;
  }

  .card:hover::before,
  .card:focus-within::before {
    transform: translateY(-4%);
  }

  .card:hover::after,
  .card:focus-within::after {
    transform: translateY(-50%);
  }

  .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
  }

  .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within::before,
  .card:focus-within::after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
    transition-duration: 2s;
  }
}

/* Mobile adjustments */
@media (max-width: 599px) {
  .title {
    min-height: auto;
    padding: 20px 0;
  }
  
  .copy {
    min-height: auto;
    padding: 8px 0;
  }
}