/* ===============================
   BLOG SECTION
================================== */
.page-top-section {
  padding: 50px 0 50px 0;
}

.page-top-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: nowrap; /* desktop & tablet same */
}

.page-top-left h2 {
  font-size: 80px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  width: 70%; /* row layout width */
}

.page-top-right {
  max-width: 550px;
  width: 30%; /* row layout width */
}

.page-top-right p {
  font-size: 22px;
  line-height: 30px;
  color: #555;
  margin: 0;
}
.news-content {
  padding: 25px;
  text-align: left;
}

.news-content a {
  text-decoration: none;
  color: inherit;
}

.news-content a:hover {
  color: #d4a017;
}


/* ===============================
   NEWS GRID / SERVICE GRID
================================== */
.news-section {
  background: #fff;
  padding: 0px 20px 80px;
}

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

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
  text-align: left;
}

.news-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

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

/* Desktop & Tablet: same layout, row */
@media screen and (min-width: 769px) {
  .page-top-content {
    flex-direction: row; /* title ane paragraph side-by-side */
  }

  .page-top-left h2 {
    font-size: 80px;
  }

  .page-top-right {
    width: 30%;
  }
}

/* Mobile view (<768px) */
@media screen and (max-width: 768px) {
  .page-top-content {
    flex-direction: column; /* column layout mobile */
    align-items: start;
    gap: 30px;
    text-align: start;
  }

  .page-top-left h2 {
    width: 100%;
    font-size: 40px;
  }

  .page-top-right {
    width: 100%;
    max-width: 100%;
  }

  .page-top-right p {
    font-size: 22px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-card img {
    height: 220px;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-excerpt {
    font-size: 16px;
  }
}

/* Extra small mobile (<375px) */
@media screen and (max-width: 375px) {
  .page-top-left h2 {
    font-size: 30px;
  }

  .news-card {
    border-radius: 15px;
  }

  .news-card img {
    height: 200px;
  }

  .news-content {
    padding: 18px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-excerpt {
    font-size: 14px;
  }
}
