@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body{
    font-family: "Montserrat", sans-serif;
}
.hed-h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32.064px, 2.004rem + ((1vw - 3.2px) * 2.445), 57px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

/* Grid layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1 fr);
  gap: 20px;
  width: 100%; /* Ensure the container spans the available space */
  max-width: 1200px; /* Optional: Restrict the width for layout control */
  margin: 0 auto; /* Center the grid horizontally */
}

/* Card styling */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Hover effect */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


/****************/

.wp-container-core-group-is-layout-843884b1 h2{    color:#111;
    font-family:'Playfair Display', serif !important;
    font-size: clamp(32.064px, 2.004rem + ((1vw - 3.2px) * 2.445), 57px);
    font-style: normal;
font-weight: 700;}