/* Focus Areas Layout */
.zz_focusWrapper {
  padding: 4rem 8%;
  
}

.zz_focusGrid {
  display: grid;
  grid-template-areas: 
    "left rightTop"
    "left rightBottom"
    "full full";
  grid-template-columns: 2fr 1.2fr;
  grid-gap: 1.5rem;
}

.zz_largeBox { grid-area: left; }
.zz_mediumBox:nth-of-type(2) { grid-area: rightTop; }
.zz_mediumBox:nth-of-type(3) { grid-area: rightBottom; }
.zz_fullBox { grid-area: full; }

.zz_box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.zz_box:hover {
  transform: translateY(-5px);
}

.zz_intro {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zz_bannerImg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}
.zz_bannerImgss {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.zz_bannerImgs {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 12px;
}

.zz_title {
  font-size: 1.4rem;
  font-weight: 600;
  color: tomato;
}

.zz_short {
  font-size: 1rem;
  color: #555;
}

.zz_detail {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.zz_btn {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  background: #d62b70;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: start;
}

.zz_btn:hover {
  background: #b1225d;
}

/* Fade Animation */
.fadeBlock {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fadeBlock.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .zz_focusGrid {
    grid-template-areas: 
      "left"
      "rightTop"
      "rightBottom"
      "full";
    grid-template-columns: 1fr;
    grid-gap: 1.2rem;
  }

  .zz_bannerImgs {
    height: 60vh; /* reduce height from 100vh for tablets */
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .zz_focusWrapper {
    padding: 2rem 1rem;
  }

  .zz_focusGrid {
    display: block; /* fallback simple stack */
  }

  .zz_box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .zz_bannerImg {
    height: 180px;
  }

  .zz_bannerImgs {
    height: 45vh; /* more compact hero image for phones */
  }

  .zz_title {
    font-size: 1.2rem;
  }

  .zz_short {
    font-size: 0.95rem;
  }

  .zz_detail {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .zz_btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
