/* CSS for section section:Hero */
#section-hero {
  padding: 60px 0 40px;
  background-color: #ffffff;
}

.hero-container {
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #2d5f3f;
  margin: 0 0 16px 0;
}

.hero-subtitle {
  font-size: 18px;
  color: #374151;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

/* CSS for section section:NewsGrid */
#section-news-grid {
  padding: 40px 0 80px;
  background-color: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.card-image-wrapper {
  width: 100%;
  height: 215px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.meta-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.meta-tag {
  background-color: #fff3e0;
  color: #e67e22;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.card-excerpt {
  font-size: 14px;
  color: #4b5563;
  margin: 0 0 24px 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d5f3f;
  font-weight: 600;
  font-size: 14px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-arrow {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}


