/* ===========================
   BLOGS HERO
=========================== */
/* ===========================
   BLOGS HERO
=========================== */
.blogs-hero {
  background: linear-gradient(-45deg, #000000, #23988e, #0f3f3c, #000000);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;

  min-height: 22vh;
  padding: 40px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.blogs-hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr; /* heading right, paragraph left */
  gap: 40px;
  align-items: center;
}

/* Left column - Paragraph */
.blogs-hero-left p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  text-align: left;
}

/* Right column - Heading */
.blogs-hero-right h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}


/* ===========================
   BLOGS SECTION
=========================== */
.blogs-section {
  background: #0b0b0b;
  padding: 60px 20px;
}

.blogs-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===========================
   BLOG CARD
=========================== */
.blog-card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12.5px;
  color: #23988e;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 18px;
  margin: 8px 0 10px;
  color: #ffffff;
}

.blog-content p {
  font-size: 14.5px;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-read {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #23988e;
  transition: color 0.3s ease;
}

.blog-read:hover {
  color: #1a7269;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .blogs-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .blogs-hero {
    min-height: 35vh;
    padding: 30px 16px;
  }

  .blogs-hero h1 {
    font-size: 30px;
  }

  .blogs-hero p {
    font-size: 15px;
  }

  .blogs-container {
    grid-template-columns: 1fr;
  }
}


/* Static PNG on left */
.hero-png {
  position: absolute;
  left: 0; /* very left of the screen */
  top: 50%;
  transform: translateY(-50%);
  width: 150px; /* adjust size */
  opacity: 0.60;
  z-index: 0;
  pointer-events: none; /* doesn't block clicks */
}

/* Responsive - hide on small screens if needed */
@media (max-width: 992px) {
  .hero-png {
    display: none;
  }
}