@charset "UTF-8";
body {
  font-family: Tahoma, sans-serif, "Open Sans Condensed";
  color: #000;
  margin: 0;
  background: #f8fafc;
  background-image: url("../img/bg_tile.jpg");
  font-size: 0.875rem;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-banner {
  margin-top: 30px;
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  padding: 0;
  position: relative;
}
.site-header .site-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #009e3c;
  text-decoration: none;
}
.site-header .container {
  position: relative;
  background-color: #009e3c;
}
.site-header .primary-menu {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-color: #009e3c;
  color: #fff;
}
.site-header .primary-menu li {
  margin-top: 5px;
  position: relative;
}
.site-header .primary-menu li a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 5px 5px 0 0;
  transition: background-color 0.2s, color 0.2s;
  text-transform: uppercase;
}
.site-header .primary-menu li a:hover {
  background: #d8d8d8;
  color: #009e3c;
}
.site-header .primary-menu li:last-child a {
  border-right: none;
}
.site-header .primary-menu li:hover a, .site-header .primary-menu li.current-menu-item a, .site-header .primary-menu li.current_page_item a {
  background: #fff;
  color: #009e3c;
  font-weight: 700;
}
.site-header .primary-menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.site-header .primary-menu li .sub-menu li {
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  border-top: none;
}
.site-header .primary-menu li .sub-menu li:last-child {
  border-bottom: none;
}
.site-header .primary-menu li .sub-menu li a {
  padding: 0.75rem 1rem;
  color: #333;
  background: transparent;
  border-radius: 0;
  font-weight: 500;
  white-space: nowrap;
}
.site-header .primary-menu li .sub-menu li a:hover {
  background-color: #f5f5f5;
  color: #009e3c;
}
.site-header .primary-menu li:hover > .sub-menu {
  display: block;
}
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

h6 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #009e3c;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.greeting-bar {
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
}
.greeting-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.greeting-bar .container {
  display: flex;
  background: #fff;
}
.greeting-bar__date {
  font-weight: 600;
  margin: 0;
  padding-left: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 10px 15px;
}
.greeting-bar__ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 1.3em;
  min-width: 0;
  padding: 10px 15px;
}
.greeting-bar__ticker-content {
  overflow: hidden;
  position: relative;
  height: 100%;
  font-size: 0.875rem;
  padding: 0 15px;
}
.greeting-bar__ticker-wrapper {
  display: inline-flex;
  gap: 3rem;
  animation: ctyTicker 30s linear infinite;
  white-space: nowrap;
}
.greeting-bar__ticker-text {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.greeting-bar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-right: 15px;
  flex-shrink: 0;
}
.greeting-bar__flag {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.greeting-bar__flag:hover {
  opacity: 0.8;
}
.greeting-bar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.875rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.greeting-bar__link svg {
  flex-shrink: 0;
}
.greeting-bar__link span {
  white-space: nowrap;
}
.greeting-bar__link:hover {
  color: #009e3c;
}
.greeting-bar__search-trigger {
  font-family: inherit;
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-popup[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.search-popup__content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 600px;
  padding: 2rem;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.search-popup[aria-hidden=false] .search-popup__content {
  transform: translateY(0);
}
.search-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.search-popup__close:hover {
  background-color: #f8fafc;
}
.search-popup__close svg {
  width: 20px;
  height: 20px;
}
.search-popup__form {
  margin-top: 0.5rem;
}
.search-popup__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000;
  font-size: 1rem;
}
.search-popup__input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.5rem;
  transition: border-color 0.2s;
}
.search-popup__input-wrapper:focus-within {
  border-color: #009e3c;
}
.search-popup__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem;
  font-family: inherit;
}
.search-popup__input::placeholder {
  color: #4a5568;
}
.search-popup__submit {
  background: #009e3c;
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  color: #fff;
}
.search-popup__submit:hover {
  background: #015d38;
}
.search-popup__submit svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.post-categories {
  font-size: 0.875rem;
  color: #4a5568;
  margin: 0 0 0.75rem;
  display: inline-block;
  list-style: none;
  padding: 0;
}
.post-categories li {
  display: inline-block;
}
.post-categories li + li {
  margin-left: 10px;
}
.post-categories li + li::before {
  content: ",";
  margin-right: 10px;
  color: #009e3c;
  position: absolute;
  left: 0;
  top: 0;
}
.post-categories a {
  font-size: 0.875rem;
  text-decoration: none;
  color: #000;
}
.post-categories a:hover {
  color: #009e3c;
}

.ticker-bar {
  color: #fff;
  overflow: hidden;
}
.ticker-bar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0 0.5rem;
  background: #009e3c;
}
.ticker-bar__content {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 1.3em;
  font-size: 0.875rem;
  padding: 0 15px;
}
.ticker-bar__wrapper {
  display: inline-flex;
  gap: 3rem;
  animation: ctyTicker 30s linear infinite;
  white-space: nowrap;
}
.ticker-bar__text {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes ctyTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home-featured {
  padding-bottom: 2rem;
}
.home-featured__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.home-featured__carousel {
  flex: 1 1 0;
  min-width: 0;
  display: block;
}
.home-featured__sidebar {
  width: min(250px, 100%);
}

.home-banners {
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.home-banners__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.home-banner {
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
}
.home-banner:first-child {
  width: 61%;
}
.home-banner:last-child {
  width: 39%;
}
.home-banner__link {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.2s;
}
.home-banner__link:hover {
  opacity: 0.9;
}
.home-banner__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f0f0;
}
.carousel__track {
  position: relative;
  width: 100%;
  height: 400px;
}
.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.carousel__slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: #fff;
}
.carousel__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 2;
  pointer-events: none;
}
.carousel__prev, .carousel__next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009e3c;
  transition: background 0.2s;
  pointer-events: all;
}
.carousel__prev:hover, .carousel__next:hover {
  background: #fff;
}
.carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel__dot.active {
  background: #fff;
}
.carousel__placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
}

.featured-tabs {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  height: 400px;
}
.featured-tabs__header {
  display: flex;
  border-bottom: 2px solid #009e3c;
}
.featured-tabs__tab {
  flex: 1;
  padding: 0.5rem 0rem;
  background: #e8e8e8;
  border: none;
  border-right: 1px solid #d0d0d0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
  transition: background 0.2s, color 0.2s;
}
.featured-tabs__tab:last-child {
  border-right: none;
}
.featured-tabs__tab:hover {
  background: #d8d8d8;
}
.featured-tabs__tab.active {
  background: #009e3c;
  color: #fff;
}
.featured-tabs__content {
  position: relative;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
}
.featured-tabs__panel {
  display: none;
  padding: 1rem;
}
.featured-tabs__panel.active {
  display: block;
}

.featured-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.featured-list__item {
  border-bottom: 1px solid #f0f0f0;
}
.featured-list__item:last-child {
  border-bottom: none;
}
.featured-list__link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #000;
  transition: color 0.2s;
}
.featured-list__link:hover {
  color: #009e3c;
}
.featured-list__link:hover .featured-list__icon {
  transform: translateX(3px);
}
.featured-list__icon {
  color: #dc143c;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1.1;
}
.featured-list__text {
  flex: 1;
  line-height: 1.5;
  font-size: 0.9rem;
}

.layout-main {
  padding: 2rem 0;
}
.layout-main__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.site-content {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #4a5568;
  font-weight: 700;
}
.breadcrumb__link {
  color: #009e3c;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #015d38;
  text-decoration: underline;
}
.breadcrumb__current {
  color: #000;
  font-weight: 500;
}

.site-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 15px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  overflow-y: auto;
}
.site-sidebar .widget + .widget {
  margin-top: 1rem;
}
.site-sidebar .widget .widget-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #009e3c;
}
.site-sidebar .widget_text + .widget {
  margin-top: -20px !important;
}
.site-sidebar .widget_text + .widget .widget-content,
.site-sidebar .widget_text + .widget .textwidget,
.site-sidebar .widget_text + .widget > div {
  margin-top: -30px !important;
}
.site-sidebar #menu-menu-sidebar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.site-sidebar #menu-menu-sidebar > li {
  position: relative;
  margin: 0;
}
.site-sidebar #menu-menu-sidebar > li > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem;
  background-color: #009e3c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background-color 0.2s, transform 0.2s;
  position: relative;
}
.site-sidebar #menu-menu-sidebar > li > a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 6px 6px;
  background-position: 0 0, 10px 0, 0 10px, 10px 10px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.site-sidebar #menu-menu-sidebar > li > a:hover {
  background-color: #015d38;
  transform: translateX(2px);
}
.site-sidebar #menu-menu-sidebar > li.current-menu-item > a, .site-sidebar #menu-menu-sidebar > li.current_page_item > a {
  background-color: #015d38;
  font-weight: 600;
}
.site-sidebar #menu-menu-sidebar > li .sub-menu {
  display: none !important;
  list-style: none;
  margin: 0.5rem 0 0 1rem;
  padding: 0;
  position: static;
  width: calc(100% - 1rem);
}
.site-sidebar #menu-menu-sidebar > li .sub-menu li {
  margin: 0 0 0.5rem 0;
}
.site-sidebar #menu-menu-sidebar > li .sub-menu li:last-child {
  margin-bottom: 0;
}
.site-sidebar #menu-menu-sidebar > li .sub-menu li a {
  display: block;
  padding: 0.5rem 0.5rem;
  background-color: #009e3c;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s;
}
.site-sidebar #menu-menu-sidebar > li .sub-menu li a:hover {
  background-color: #015d38;
  transform: translateX(2px);
}
.site-sidebar #menu-menu-sidebar > li .sub-menu li.current-menu-item a, .site-sidebar #menu-menu-sidebar > li .sub-menu li.current_page_item a {
  background-color: #015d38;
  font-weight: 600;
}
.site-sidebar #menu-menu-sidebar > li:hover > .sub-menu, .site-sidebar #menu-menu-sidebar > li.menu-item-has-children:hover .sub-menu {
  display: block !important;
}
.site-sidebar #menu-menu-sidebar > li:hover .sub-menu {
  display: block !important;
}

.entry-card {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.entry-card:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.entry-card__category {
  font-size: 0.875rem;
  color: #009e3c;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.entry-card__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.entry-card__thumb-wrapper {
  flex-shrink: 0;
}
.entry-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.entry-card__image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.entry-card__thumb:hover .entry-card__image {
  transform: scale(1.05);
}
.entry-card__body {
  flex: 1;
  min-width: 0;
}
.entry-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
}
.entry-card__title a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.entry-card__title a:hover {
  color: #009e3c;
}
.entry-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #4a5568;
  margin: 0 0 0.75rem;
  flex-wrap: wrap;
}
.entry-card__date, .entry-card__views {
  white-space: nowrap;
}
.entry-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
}

.content-sections {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.content-section {
  margin-bottom: 3rem;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #009e3c;
}
.content-section__title {
  margin: 0;
  font-weight: 700;
}
.content-section__title a {
  color: #009e3c;
  text-decoration: none;
}
.content-section__title a:hover {
  text-decoration: underline;
}
.content-section__more {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.content-section__more:hover {
  color: #009e3c;
}
.content-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.content-section__item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.content-section__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.content-section__thumb {
  display: block;
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.content-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.content-section__item:hover .content-section__image {
  transform: scale(1.05);
}
.content-section__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.content-section__item-title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.content-section__item-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.content-section__item-title a:hover {
  color: #009e3c;
}
.content-section__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #4a5568;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}
.content-section__date, .content-section__views {
  white-space: nowrap;
}

.site-footer .container {
  text-align: center;
  background-color: #fff;
  padding: 1.5rem 0;
}

.widget .title-sidebar {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(to top, #009e3c, #01ff99);
}

.site-sidebar .widget.widget_text + .widget,
.site-sidebar .widget_text + .widget {
  margin-top: 0px !important;
}
.site-sidebar .widget.widget_text + .widget .widget-content,
.site-sidebar .widget.widget_text + .widget .textwidget,
.site-sidebar .widget.widget_text + .widget > div,
.site-sidebar .widget_text + .widget .widget-content,
.site-sidebar .widget_text + .widget .textwidget,
.site-sidebar .widget_text + .widget > div {
  margin-top: 0px !important;
}
.site-sidebar .post-sidebar {
  padding: 12px 8px;
  background: rgba(0, 158, 60, 0.1);
}
.site-sidebar .post-sidebar li + li {
  margin-top: 12px;
}
.site-sidebar .post-sidebar li a {
  font-size: 0.875rem;
  text-decoration: none;
  color: #000;
  position: relative;
  padding-left: 12px;
}
.site-sidebar .post-sidebar li a::before {
  content: "";
  margin-right: 10px;
  color: #009e3c;
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: url("../img/liststyle.jpg") no-repeat center center;
  background-size: contain;
}
.site-sidebar .post-sidebar li a:hover {
  color: #009e3c;
  text-decoration: underline;
}
.site-sidebar .widget-list {
  list-style: none;
  padding: 12px 8px;
  margin: 0;
  background: rgba(0, 158, 60, 0.1);
}
.site-sidebar .widget-list li {
  font-size: 0.875rem;
}
.site-sidebar .widget-list li + li {
  margin-top: 8px;
}
.site-sidebar .widget-list li a {
  font-size: 0.875rem;
}
.site-sidebar .widget-social {
  padding: 12px 8px;
  background: rgba(0, 158, 60, 0.1);
}
.site-sidebar .widget-social li + li {
  margin-top: 8px;
}
.site-sidebar .widget-social li a {
  font-size: 0.875rem;
}

.entry-single {
  margin-bottom: 2rem;
}
.entry-single__header {
  margin-bottom: 2rem;
}
.entry-single__thumb {
  margin-bottom: 1.5rem;
}
.entry-single__thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.entry-single__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.entry-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}
.entry-single__date, .entry-single__author {
  display: inline-block;
}
.entry-single__categories {
  display: inline-block;
}
.entry-single__categories a {
  color: #009e3c;
  text-decoration: none;
}
.entry-single__categories a:hover {
  text-decoration: underline;
}
.entry-single__content {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #000;
}
.entry-single__content p {
  margin-bottom: 1.5rem;
}
.entry-single__content h2, .entry-single__content h3, .entry-single__content h4 {
  color: #009e3c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.entry-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}
.related-posts__title {
  font-weight: 700;
  color: #009e3c;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.related-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.related-posts__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.related-posts__item:last-child {
  border-bottom: none;
}
.related-posts__link {
  font-size: 0.875rem;
  color: #000;
  text-decoration: none;
  line-height: 1.6;
  display: block;
  transition: color 0.2s;
}
.related-posts__link:hover {
  color: #009e3c;
  text-decoration: underline;
}

.site-footer .footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #009e3c;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Khung form */
.contact-form-outer {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 30px;
}

/* Tiêu đề */
.contact-form-outer .cf7-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

/* Grid layout */
.cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0px 18px;
}

.cf7-field.cf7-full {
  grid-column: 1/-1;
}

/* Input / textarea */
.cf7-input,
.cf7-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.cf7-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Placeholder */
.cf7-input::placeholder,
.cf7-textarea::placeholder {
  color: #94a3b8;
}

/* Hover + Focus */
.cf7-input:hover,
.cf7-textarea:hover {
  background-color: #ffffff;
  border-color: #cbd5f5;
}

.cf7-input:focus,
.cf7-textarea:focus {
  background-color: #ffffff;
  border-color: #009e3c;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.37);
}

/* Nút gửi */
.cf7-submit-wrap {
  margin-top: 4px;
  text-align: center;
}

.cf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #009e3c, #01ff99);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 12px 30px rgba(0, 158, 60, 0.35);
}

.cf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 158, 60, 0.5);
  opacity: 0.95;
}

.cf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(0, 158, 60, 0.4);
}

@media (max-width: 768px) {
  .site-header {
    min-height: 50px;
  }
  .site-header .container {
    position: relative;
    padding: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
  }
  .site-header .primary-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #009e3c;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    border-top: 2px solid #015d38;
    margin: 0;
  }
  .site-header .primary-menu.menu-open {
    display: flex !important;
  }
  .site-header .primary-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }
  .site-header .primary-menu li:last-child {
    border-bottom: none;
  }
  .site-header .primary-menu li a {
    padding: 1rem 1.25rem;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
  }
  .site-header .primary-menu li a:hover, .site-header .primary-menu li a:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 1.5rem;
  }
  .site-header .primary-menu li.current-menu-item > a, .site-header .primary-menu li.current_page_item > a {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
  }
  .site-header .primary-menu li .sub-menu {
    display: none !important;
    position: static;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .site-header .primary-menu li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header .primary-menu li .sub-menu li a {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .site-header .primary-menu li.menu-item-has-children.active > .sub-menu {
    display: block !important;
  }
  .site-header .primary-menu li.menu-item-has-children > a::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    margin-left: auto;
    transition: transform 0.3s ease;
  }
  .site-header .primary-menu li.menu-item-has-children.active > a::after {
    content: "−";
    transform: rotate(0deg);
  }
  .site-header .menu-toggle {
    display: block !important;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    min-width: 44px;
    min-height: 44px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
  }
  .site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
  }
  .site-header .menu-toggle::before {
    content: "☰";
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    display: block;
  }
  .site-header .menu-toggle.active::before {
    content: "✕";
    font-size: 1.1rem;
  }
}
@media (min-width: 769px) {
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .primary-menu {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.125rem;
  }
  h3 {
    font-size: 1rem;
  }
  h4 {
    font-size: 0.875rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.625rem;
  }
}
@media (max-width: 768px) {
  .greeting-bar {
    font-size: 0.875rem;
  }
  .greeting-bar__inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .greeting-bar__inner > .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
  .greeting-bar__date {
    padding-left: 10px;
    order: 1;
    flex: 0 0 auto;
  }
  .greeting-bar__ticker {
    order: 3;
    width: 100%;
    height: 1.5em;
    flex: 1 1 100%;
  }
  .greeting-bar__ticker-content {
    font-size: 0.75rem;
    padding: 0 10px;
  }
  .greeting-bar__actions {
    padding-right: 10px;
    gap: 0.75rem;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .greeting-bar__link {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  .greeting-bar__link span {
    display: none;
  }
}
@media (max-width: 768px) {
  .search-popup__content {
    padding: 1.5rem;
    width: 95%;
  }
}
@media (max-width: 768px) {
  .ticker-bar__inner {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  .ticker-bar__label {
    font-size: 0.75rem;
    padding: 0 10px;
  }
  .ticker-bar__content {
    font-size: 0.75rem;
    padding: 0 10px;
    height: 1.5em;
  }
}
@media (max-width: 768px) {
  .home-banners {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .home-banners__inner {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .carousel {
    display: block !important;
    visibility: visible !important;
  }
  .carousel__track {
    height: 250px;
  }
  .carousel__overlay {
    padding: 1.5rem 1rem 1rem;
  }
  .carousel__title {
    font-size: 1rem;
  }
  .carousel__prev, .carousel__next {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .home-featured__carousel {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    order: 1;
  }
  .home-featured__sidebar {
    order: 2;
  }
}
@media (max-width: 480px) {
  .carousel {
    display: block !important;
    visibility: visible !important;
  }
  .carousel__track {
    height: 200px;
  }
  .carousel__title {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .breadcrumb__list {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
  .breadcrumb__item:not(:last-child)::after {
    margin-left: 0.375rem;
  }
}
@media (max-width: 768px) {
  .entry-card__inner {
    gap: 0.75rem;
  }
  .entry-card__image {
    width: 120px;
    height: 90px;
  }
  .entry-card__title {
    font-size: 1rem;
  }
  .entry-card__meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}
@media (max-width: 480px) {
  .entry-card__thumb-wrapper {
    display: none;
  }
}
@media (max-width: 768px) {
  .content-section__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .content-section__item-title {
    font-size: 0.875rem;
  }
  .content-section__meta {
    font-size: 0.75rem;
    gap: 0.75rem;
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .content-section__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 992px) {
  .layout-main {
    padding: 1.5rem 0;
  }
  .layout-main__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .site-content {
    padding: 1rem;
    width: fit-content;
  }
  .site-sidebar {
    width: fit-content;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .home-featured {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .home-featured__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .home-featured__carousel {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    order: 1;
  }
  .home-featured__sidebar {
    width: 100%;
    order: 2;
  }
  .entry-card__inner {
    flex-direction: column;
    gap: 1rem;
  }
  .entry-card__thumb-wrapper {
    width: 100%;
  }
  .entry-card__image {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
  .content-section {
    margin-bottom: 2rem;
  }
  .content-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .layout-main {
    padding: 1rem 0;
  }
  .site-content {
    padding: 1rem;
  }
  .entry-single__title {
    font-size: 1.25rem;
  }
  .entry-single__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .related-posts {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .carousel__placeholder {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .site-content {
    padding: 0.75rem;
  }
  .site-sidebar {
    padding: 0.75rem;
  }
  .entry-card {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .content-section__grid {
    gap: 0.75rem;
  }
  .content-section__item .content-section__thumb {
    width: 100% !important;
    padding-top: 56.25% !important;
  }
  .content-section__item .content-section__image {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  .content-section__item .content-section__body {
    padding: 0.75rem;
  }
}
@media (max-width: 640px) {
  .contact-form-outer {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .cf7-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
