.page-template.page-info .header {
  background: var(--color-cream);
}

.page-template.page-info .menu, 
.page-template.page-info .header-search
{
  color: black;
}

.info-hero {
  background: var(--color-cream);
  padding: var(--space-xxl) var(--space-md);
}

.info-hero-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.info-hero-header {
  text-align: center;
  margin: 0;
  padding: 0;
}

.info-hero-header h1 {
  font-size: 40px;
  margin-bottom: var(--space-sm);
}

.info-hero-header p {
  max-width: var(--container-md);
  font-size: 18px;
  line-height: 1.6;
}

.info-hero-row {
  display: grid;
  gap: var(--space-lg);
}

.info-hero-row-primary {
  grid-template-columns: repeat(3, 1fr);
}

.info-hero-row-secondary {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  display: flex;
  justify-content: space-between;
  align-items: top;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  gap: var(--space-md);
}

.info-card.disabled {
  opacity: 0.75;
  cursor: default;
}

.info-card h2 {
  font-family: var(--font-sans);
  margin-bottom: var(--space-sm);
  font-size: 22px;
}

.info-card p {
  font-size: 16px;
  line-height: 1.6;
}

.info-card:hover, .carousel-card:hover {
  transform: translateY(-2px);
}

.info-card:hover .read-more, .carousel-card:hover .read-more {
  text-decoration: underline;
}

.info-card-icon {
  width: 81px;
  height: 81px;
  object-fit: contain; 
  flex-shrink: 0;
}

.info-listing {
  max-width: var(--container-lg);
  margin: var(--space-xxl) auto;
  padding: 0 var(--space-md);
}

.info-article {
  margin-bottom: var(--space-xl);
}

.info-article h2 {
  font-size: 24px;
  margin-bottom: var(--space-xs);
}

.info-article p {
  margin: 0;
  margin-bottom: var(--space-xl);
  font-size: 16px;
  line-height: 1.7;
}

.info-carousel {
  background: var(--color-white);
  padding: var(--space-xxl) var(--space-md);
}

.info-carousel-inner {
  max-width: var(--container-xl);
  margin: auto;
}

.info-carousel-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.info-carousel-header .pill {
  background-color: var(--color-rose);
}

.carousel-card {
  background: white;
  border-radius: 16px;
  position: relative;
}

.carousel-card-link {
  position: absolute;
  inset: 0;                
  width: 100%;
  height: 100%;
  z-index: 5;              
  text-indent: -9999px;    
  background: transparent; 
}

.carousel-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.info-carousel .splide__arrow--prev {
  left: -3rem;
}

.info-carousel .splide__arrow--next {
  right: -3rem;
}

@media (max-width: 1024px) {
  .info-hero-row-primary {
    grid-template-columns: repeat(1, 1fr);
  }

  .info-hero-row-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .info-hero-row-primary {
    grid-template-columns: 1fr;
  }

  .info-hero {
    padding: var(--space-xl) var(--space-md);
  }

  .info-carousel-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
