section[data-cattype="605"] .background-container {
  background: linear-gradient(to bottom, #F5F6F8 15%, #752121 100%);
  background-size: cover;
  background-position: center;
  padding: 60px 300px;
}

section[data-cattype="605"] .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  grid-template-areas:
    "item1 item3 item6 item4"
    "item2 item3 item7 item4"
    "item2 item5 item7 item8";
height: 450px;
}

/* Grid area assignments */
section[data-cattype="605"] .item-1 { grid-area: item1; }
section[data-cattype="605"] .item-2 { grid-area: item2; }
section[data-cattype="605"] .item-3 { grid-area: item3; }
section[data-cattype="605"] .item-4 { grid-area: item4; }
section[data-cattype="605"] .item-5 { grid-area: item5; }
section[data-cattype="605"] .item-6 { grid-area: item6; }
section[data-cattype="605"] .item-7 { grid-area: item7; }
section[data-cattype="605"] .item-8 { grid-area: item8; }

section[data-cattype="605"] .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

section[data-cattype="605"] .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Center text block */
section[data-cattype="605"] .gallery-center {
  background-color: #6B1B1C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
}

section[data-cattype="605"] .gallery-text h3 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

/* Responsive Layout */
@media (max-width: 992px) {
  section[data-cattype="605"] .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }
}

@media (max-width: 480px) {
  section[data-cattype="605"] .background-container {
    padding: 0px 20px 20px 20px;
    background: linear-gradient(to bottom, #F5F6F8 10%, #752121 100%);
  }

  section[data-cattype="605"] .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: auto;
  }

  /* Center block full-width and at top */
  section[data-cattype="605"] .gallery-item.gallery-center {
    order: -1;
    width: 100%;
  }

  section[data-cattype="605"] .gallery-center {
    padding: 15px;
  }

  /* All other items = 2 columns */
  section[data-cattype="605"] .gallery-item:not(.gallery-center) {
    width: calc(50% - 6px); /* 6px = half of 12px gap */
    height: 120px;
  }

  section[data-cattype="605"] .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  section[data-cattype="605"] .gallery-text h3 {
    font-size: 28px;
color: #1c1c1c;
  }

section[data-cattype="605"] .gallery-center {
  background-color: transparent;
}

  /* Reset grid-area from desktop */
  section[data-cattype="605"] .gallery-item {
    grid-area: unset !important;
  }
}
}

