body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-wrapper,
.container,
.site-content,
#content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #222;
  border-bottom: 2px solid #e3e3e3;
  padding-bottom: 10px;
}

.section-description {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 0 25px;
  line-height: 1.5;
  font-style: italic;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 20px 0 40px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
}

.post-image,
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 0;
}

.post-card .content {
  padding: 16px;
}

.post-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.post-card .excerpt {
  font-size: 14px;
  color: #555;
}

.post-card a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.post-card a:hover {
  color: #cc0000;
}

.interesting-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 50px;
}

.interesting-post-card {
  background: #f9f7f4;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.interesting-post-card:hover {
  transform: translateY(-4px);
}

.interesting-post-card img.post-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
}

.interesting-post-card .content {
  padding: 18px 20px;
}

.interesting-post-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #3c3c3c;
  font-weight: 700;
  line-height: 1.2;
}

.interesting-post-card .excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

.interesting-post-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.interesting-post-card h3 a:hover {
  color: #cc0000;
}

.notable-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.notable-card {
  background: #fcfcfc;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.notable-card:hover {
  transform: translateY(-4px);
}

.notable-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.notable-content {
  padding: 14px 16px;
}

.notable-content h3 {
  font-size: 16px;
  margin: 0;
  color: #333;
  line-height: 1.3;
}

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

.notable-card a:hover h3 {
  color: #c0392b;
}

.rss-card {
  background-color: #F9F7F4;
  border-radius: 0;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease;
}

.rss-card:hover {
  background-color: #FFFFFF;
}

.rss-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.rss-card .desc {
  font-size: 14px;
  line-height: 1.4;
}

.pmz-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

.pmz-post-card {
  background: #fff8e1;
  border-radius: 0;
  box-shadow: none;
  width: calc(33.33% - 12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pmz-post-card:hover {
  transform: translateY(-6px);
}

.pmz-post-thumb-link {
  display: block;
  border-radius: 0;
  overflow: hidden;
}

.pmz-post-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pmz-post-card h3 {
  font-size: 18px;
  margin: 12px 16px 8px;
  font-weight: 700;
  color: #6d4b01;
}

.pmz-post-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

.pmz-post-card h3 a:hover {
  color: #c57c00;
}

.pmz-post-card .excerpt {
  margin: 0 16px 16px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}

.dropdown-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.dropdown-block {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-toggle {
  background-color: #f0f0f0;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle:hover {
  background-color: #e0e0e0;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.dropdown-block.open .dropdown-content {
  max-height: 500px;
  padding: 15px 20px;
}

.dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-content li {
  margin-bottom: 8px;
}

.dropdown-content a {
  color: #0073aa;
  text-decoration: none;
}

.dropdown-content a:hover {
  text-decoration: underline;
}

.view-all {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}
.dropdown-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown-block.open .dropdown-arrow {
  transform: rotate(-135deg);
}
@media (max-width: 600px) {
  body, .content, .section-title, .post-card h3, .excerpt {
    font-size: 22px !important;
    line-height: 1.5;
  }

  .post-card h3 {
    font-size: 20px !important;
  }

  .excerpt {
    font-size: 20px !important;
  }
}