.news-page {
  padding: 56px 0 82px;
  background: #f3f3f3;
}

.news-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
}

.news-main {
  min-width: 0;
}

.news-page-title {
  margin: 0 0 18px;
  font-size: 28px;
  text-transform: uppercase;
  color: #1f6f3a;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.11);
}

.news-card-thumb {
  display: block;
}

.news-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 18px 34px 22px;
}

.news-card-date {
  color: #2f7352;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.news-card-title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.18;
  text-transform: uppercase;
  color: #3f3f3f;
  letter-spacing: 0.1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.news-card-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #616161;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-sidebar-box {
  margin-bottom: 32px;
}

.news-search-form {
  position: relative;
}

.news-search-form input {
  width: 100%;
  height: 46px;
  border: 1px solid #e3e7e8;
  background: #e7ecef;
  padding: 0 42px 0 15px;
  font-size: 13px;
  color: #6a6a6a;
}

.news-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
}

.news-sidebar-title {
  margin: 0 0 18px;
  font-size: 33px;
  font-weight: 400;
  color: #333;
}

.news-social-links {
  display: flex;
  gap: 12px;
}

.news-social-links a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #2f7352;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.news-pagination {
  margin-top: 30px;
}

.news-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.news-pagination .page-numbers .current {
  background: #1f6f3a;
  border-color: #1f6f3a;
  color: #fff;
}

.news-single-page {
  padding: 42px 0 70px;
}

.news-single-container {
  max-width: 960px;
}

.news-breadcrumb {
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 14px;
}

.news-breadcrumb a {
  color: #1f6f3a;
  text-decoration: none;
}

.news-breadcrumb span {
  margin: 0 6px;
}

.news-single-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #222;
}

.news-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.news-toc {
  border: 1px solid #d9e3dc;
  border-radius: 6px;
  margin-bottom: 24px;
}

.news-toc-toggle {
  width: 100%;
  border: none;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.news-toc-list {
  margin: 0;
  padding: 20px 30px;
  list-style: none;
}

.news-toc.is-collapsed .news-toc-list {
  display: none;
}

.news-toc-item {
  margin-bottom: 8px;
}

.news-toc-level-3 {
  margin-left: 16px;
}

.news-toc-item a {
  text-decoration: none;
  color: #1f2937;
}

.news-single-content {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.news-single-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 16px;
}

.news-single-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.news-single-content img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  margin: 24px auto;
}

.news-single-content .wp-caption {
  max-width: 720px;
  margin: 24px auto;
  text-align: center;
}

.news-single-content .wp-caption-text {
  font-size: 13px;
  font-style: italic;
  color: #555;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 8px;
}

.news-share-label {
  font-weight: 700;
}

.news-share a {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #1f6f3a;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.news-comments {
  margin-top: 38px;
}

.news-comments-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.news-comment-textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #dcdfe4;
  padding: 14px 16px;
  resize: vertical;
}

.news-comment-textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

.news-comments .form-submit .submit {
  background: #11191c;
  color: #fff;
  border: none;
  padding: 12px 22px;
  margin-top: 10px;
  cursor: pointer;
}

.news-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.news-comments .comment-body {
  border-bottom: 1px solid #ececec;
  padding: 14px 0;
}

@media (max-width: 991px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .news-card-title {
    font-size: 21px;
  }

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

@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

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

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

  .news-card-body {
    padding: 16px 18px 20px;
  }
}
