﻿.tabs-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-bottom: 15px;
}

.tab-button {
  background-color: #006400;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  transition: background-color 0.3s;
}

.tab-button:hover {
  background-color: #004d00;
}

.tab-button.active {
  background-color: #008000;
}

@media (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 80%;
    margin: 2px 0;
  }
}

.toggle-section1 {
  display: none;
  padding: 10px;
}

.toggle-section1.active {
  display: block;
}

.article-link {
  position: relative;
  display: block;
  margin-bottom: 5px;
  padding: 7px 10px 7px 24px;
  border-radius: 4px;
  background: #f5f7f5;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.article-link::before {
  content: "›";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  line-height: 1;
  color: #006400;
  font-weight: bold;
}

.article-link:hover {
  background: #eef3ee;
  padding-left: 27px;
  text-decoration: none;
}

.more-articles {
  display: none;
  margin-top: 10px;
  padding-top: 4px;
}

.toggle-more {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #006400;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.toggle-more:hover {
  background-color: #004d00;
}