
/* gallery - photos css */
/* ===== GALLERY PHOTOS CSS ===== */

/* ===== SECTION ===== */
.photos {
  padding: 60px 20px;
  background: linear-gradient(135deg, #eef5ff, #fff8f0);
  font-family: 'Poppins', sans-serif;
}

/* ===== H2 ===== */
.photos h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;

  background: linear-gradient(90deg, #2b6cb0, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.photos h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(to right, #4da6ff, #ffb347, #ffe066);
}

/* ===== PARAGRAPH ===== */
.photos p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;

  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e6f0ff;
}

/* ===== MAIN CARD ===== */
.photos .wp-block-columns {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  border: 2px solid #e6f0ff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  gap: 25px;
  position: relative;
  display: flex;
}

/* top gradient line */
.photos .wp-block-columns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(to right, #4da6ff, #ffb347, #ffe066);
}

/* ===== COLUMNS ===== */
.photos .wp-block-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== IMAGE ===== */
.photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* image hover */
.photos img:hover {
  transform: scale(1.04);
}

/* ===== TITLE (H5 - REFINED, NO HOVER) ===== */
.photos h5 {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 8px;
  letter-spacing: 0.4px;

  display: inline-block;
  align-self: center;

  padding: 7px 14px;
  border-radius: 8px;

  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid #e3efff;

  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* top accent line */
.photos h5::before {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  margin: 0 auto 6px;
  background: linear-gradient(to right, #4da6ff, #ffb347);
  border-radius: 2px;
}

/* bottom divider */
.photos h5::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto 0;
  background: #d6e4f5;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .photos h2 {
    font-size: 30px;
  }

  .photos img {
    height: 190px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .photos {
    padding: 40px 15px;
  }

  .photos h2 {
    font-size: 26px;
  }

  .photos p {
    font-size: 15px;
  }

  .photos .wp-block-columns {
    flex-direction: column;
    padding: 18px;
  }

  .photos img {
    height: 200px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .photos h2 {
    font-size: 22px;
  }

  .photos img {
    height: 170px;
  }

  .photos h5 {
    font-size: 13.5px;
  }
}
