.photo-gallery {
  max-width: 1200px;   
  margin: 0 auto;     
  padding: 2rem 1rem;  
}

.photo-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.photo-gallery__small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}


.photo-gallery__item {
  overflow: hidden;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 767px) {
  
  .photo-gallery__grid,
  .photo-gallery__small-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .photo-gallery__item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;  
    overflow: hidden;
  }
  .photo-gallery__item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}  


section.cta-section {
  text-align: center;
  margin: 8rem 0;
}

section.cta-section .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background-color: #89BD27;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

section.cta-section .cta-button:hover {
  background-color: #89BD27;
}