 .page_content_list {
    list-style-type: disc !important;
    padding-left: 20px;
    margin-left: 0;
  }
.home {
    height: 100vh;
    position: relative;
}

.page_content_description_large p {
    font-size: 22px !important;
    line-height: 1.5;
}

.home-content {
    position: relative;
    padding-top: 150px;
    color: #fff;
    text-align: center;
}

/* .home p {
    font-size: 16px;
    margin-top: 10px;
} */

.home-content button {
    display: block;
    font-size: clamp(14px, 1.5vw, 18px);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
    cursor: pointer;
}


/******************************************************************************/
/* HOME PAGE GALLERY*/
/******************************************************************************/
.home-gallery-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.home-gallery-container {
  max-width: 1000px;
  width: 100%;
}

.home-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.home-gallery-item {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}

.home-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px; /* space between image and title */
}

/* New: Title above description */
.home-image-title {
  font-weight: 400;
  font-size: 1.5rem;
  color: #132153;
  margin-bottom: 4px;
  padding: 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.home-image-description {
  margin-top: 10px;
  font-size: 1.125rem;
  color: #414960;
  line-height: 1.4;
  padding: 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .home-gallery-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .home-gallery-item {
    flex: 1 1 100%;
  }
  .home-image-title {
    font-size: 1rem;
    padding: 0 5px;
  }
  .home-image-description {
    font-size: 0.95rem;
    padding: 0 5px;
  }
}

/* Optional: limit to 3 lines on small screens with line clamping */
@media (max-width: 500px) {
  .home-image-description {
    display: -webkit-box;
    display: box; /* Standard fallback */
    -webkit-box-orient: vertical;
    box-orient: vertical; /* Standard fallback */
    -webkit-line-clamp: 3;
    line-clamp: 3; /* Standard syntax */
    overflow: hidden;
    text-overflow: ellipsis;
  }
}