/* ==============================
   OUR CAMPUS HERO
================================ */

.ourcampus-hero {
  width: 100%;
  background: #ffffff;
}

/* Inner layout boxed */
.ourcampus-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* ==============================
   LEFT CONTENT
================================ */

.ourcampus-hero-content {
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.ourcampus-breadcrumb {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #8a9a9a;
  margin-bottom: 20px;
}

.ourcampus-breadcrumb a {
  color: #2E6A66;
  text-decoration: none;
}

.ourcampus-breadcrumb span {
  margin: 0 4px;
}

/* Heading */
.ourcampus-hero h1 {
  font-family: 'Glyphic', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #000;
}

/* Paragraph */
.ourcampus-hero p {
  margin-top: 130px;
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  color: #4a5f5f;
}

/* ==============================
   RIGHT IMAGE
================================ */

.ourcampus-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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


@media (max-width: 768px) {
  .ourcampus-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }

  .ourcampus-hero-content,
  .ourcampus-hero-image {
    order: 1;
  }

  .ourcampus-hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .ourcampus-hero p {
    margin-top: 20px;
    font-size: 15px;
    max-width: 100%;
  }

  .ourcampus-breadcrumb {
    font-size: 13px;
  }
}


/* 2nd section */
.ourcampus-gallery {
  padding: 70px 20px;
}

.ourcampus-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ourcampus-gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.is-hidden {
  display: none;
}

.ourcampus-gallery-btn {
  margin-top: 36px;
  text-align: center;
}

.ourcampus-gallery-btn button {
  font-family: "faculty-glyphic", serif !important;
  padding: 12px 34px;
  background: #2E6A66;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.ourcampus-gallery-btn button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ourcampus-gallery-btn button:hover {
  background: #1f4f4b; /* hover color */
}


/* Mobile */
@media (max-width: 768px) {
  .ourcampus-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

    .ourcampus-gallery {
  padding:40px 20px;
	}}