/* ─── NEWS LIST ───────────────────────────────────────────────────────────── */
.news-section {
  padding: 32px 0 60px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.news-card-image-link {
  display: block;
  flex-shrink: 0;
}

.news-card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8f5e9 0%, #f4f5f9 100%);
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d8f63;
  font-size: 40px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.news-card-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.news-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #111;
}

.news-card-title a {
  color: inherit;
  transition: color 0.15s;
}

.news-card-title a:hover {
  color: #1a5c3a;
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #666;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-more {
  font-size: 14px;
  font-weight: 600;
  color: #1a5c3a;
  margin-top: auto;
  transition: color 0.15s;
}

.news-card-more:hover {
  color: #3d8f63;
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  background: #f9f9f9;
  border-radius: 14px;
  border: 1px dashed #ddd;
}

.news-empty-icon {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 16px;
}

.news-empty p {
  font-size: 16px;
  color: #888;
  margin: 0;
}

/* ─── NEWS DETAIL (READER) ────────────────────────────────────────────────── */
.news-reader {
  background: #f4f5f9;
  padding-bottom: 60px;
}

.news-reader-top {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.news-reader-top-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.news-reader-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a5c3a;
  transition: color 0.15s;
}

.news-reader-back:hover {
  color: #3d8f63;
}

.news-reader-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 15px 0;
}

.news-reader-article {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.news-reader-header {
  padding: 36px 40px 28px;
}

@media (max-width: 767px) {
  .news-reader-header {
    padding: 28px 20px 22px;
  }
}

.news-reader-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #888;
}

.news-reader-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  background: #e8f5e9;
  color: #1a5c3a;
  font-size: 12px;
  font-weight: 600;
}

.news-reader-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 0;
}

.news-reader-lead {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  font-weight: 500;
}

.news-reader-cover {
  margin: 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.news-reader-cover img {
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
}

.news-reader-body {
  padding: 36px 40px 44px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 767px) {
  .news-reader-body {
    padding: 28px 20px 32px;
    font-size: 16px;
  }
}

.news-reader-body p {
  margin-bottom: 1.25em;
}

.news-reader-body p:last-child {
  margin-bottom: 0;
}

.news-reader-body h2,
.news-reader-body h3 {
  font-weight: 700;
  color: #111;
  margin: 1.75em 0 0.75em;
  line-height: 1.35;
}

.news-reader-body h2 {
  font-size: 1.35em;
}

.news-reader-body h3 {
  font-size: 1.15em;
}

.news-reader-body ul,
.news-reader-body ol {
  margin: 0 0 1.25em 1.4em;
}

.news-reader-body li {
  margin-bottom: 0.5em;
}

.news-reader-body a {
  color: #1a5c3a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-reader-body a:hover {
  color: #3d8f63;
}

.news-reader-body blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid #3d8f63;
  background: #f9fafb;
  border-radius: 0 8px 8px 0;
  color: #555;
  font-style: italic;
}

.news-reader-empty {
  color: #888;
  font-style: italic;
  margin: 0;
}

.news-reader-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 575px) {
  .news-reader-nav {
    grid-template-columns: 1fr;
  }
}

.news-reader-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 88px;
}

.news-reader-nav-link:hover {
  border-color: #c8e6c9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.news-reader-nav-link--next {
  text-align: right;
}

.news-reader-nav-link--empty {
  display: none;
}

@media (min-width: 576px) {
  .news-reader-nav-link--empty {
    display: block;
    visibility: hidden;
  }
}

.news-reader-nav-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a5c3a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-reader-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.news-breadcrumb a {
  color: #666;
  transition: color 0.15s;
}

.news-breadcrumb a:hover {
  color: #1a5c3a;
}

.news-breadcrumb-sep {
  color: #ccc;
}
