<style type="text/css">
  /* ===== HEADER BASE ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.site-branding img {
  height: 50px;
  width: auto;
}

/* ===== SEARCH ===== */
.search-wrapper {
  position: relative;
}

#search-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: 0.3s;
}

#search-icon:hover {
  transform: scale(1.05);
}

.search-form-wrapper {
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: none;
  width: 250px;
}

.search-wrapper:hover .search-form-wrapper {
  display: block;
}

.search-field {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
}

/* ===== NAVIGATION ===== */
.main-navigation {
  background: #fff;
  border-top: 1px solid #eee;
}

#primary-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  padding: 10px 20px;
  margin: 0;
  align-items: center;
}

/* LINKS */
#primary-menu li {
  position: relative;
}

#primary-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 5px;
  display: block;
  transition: 0.3s;
}

#primary-menu a:hover {
  color: #0d6efd;
}

/* ACTIVE */
.current-menu-item > a {
  color: #0d6efd;
  font-weight: 600;
}

/* ===== DROPDOWN ===== */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 99;
}

.submenu li {
  padding: 0;
}

.submenu a {
  padding: 10px 20px;
  font-size: 14px;
}

.submenu a:hover {
  background: #f5f7fb;
}

/* SHOW DROPDOWN */
.menu-item-has-children:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== HAMBURGER ===== */
.hamburger-wrapper {
  display: none;
}

.hamburger {
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  position: relative;
  transition: 0.3s;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  top: 7px;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .hamburger-wrapper {
    display: block;
  }

  .main-navigation {
    display: none;
    width: 100%;
  }

  .site-header:focus-within .main-navigation,
  .site-header:hover .main-navigation {
    display: block;
  }

  #primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  #primary-menu li {
    width: 100%;
  }

  #primary-menu a {
    width: 100%;
    padding: 12px 20px;
  }

  /* MOBILE DROPDOWN */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 15px;
  }

  .menu-item-has-children:focus-within > .submenu,
  .menu-item-has-children:hover > .submenu {
    display: block;
  }
}

/* ===== BASE ===== */
#content {
  background: #f7f9fc;
  padding: 40px 20px;
}

.content-area {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== FEATURED CATEGORIES ===== */
.featured-categories-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card a {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-decoration: none;
}

.card-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* ===== MAIN GRID ===== */
#primary {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* ===== SECTION HEADER ===== */
.section-header-text {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

/* ===== ARTICLE CARD ===== */
.article-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.image-container {
  width: 35%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.copy-container {
  padding: 20px;
  width: 65%;
}

.copy-container p a {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.copy-container p a:hover {
  color: #0d6efd;
}

.excerpt p {
  color: #666;
  margin: 10px 0 20px;
  line-height: 1.5;
}

/* BUTTON */
.button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.button:hover {
  background: #0b5ed7;
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-numbers {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.page-numbers:hover {
  background: #0d6efd;
  color: #fff;
}

.page-numbers.current {
  background: #0d6efd;
  color: #fff;
}

/* ===== SIDEBAR ===== */
.widget-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.widget-area > div,
.widget {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* ABOUT */
.about-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.about-copy {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  #primary {
    grid-template-columns: 1fr;
  }

  .featured-categories-wrapper {
    grid-template-columns: 1fr;
  }

  .article-card {
    flex-direction: column;
  }

  .image-container {
    width: 100%;
    height: 200px;
  }

  .copy-container {
    width: 100%;
  }
}
div#primary {
    display: block !important;
}
.article-card {
    padding: 12px;
}
/* ===== SIDEBAR BASE ===== */
.widget-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
}

/* ===== CARD STYLE ===== */
.widget-area > div,
.widget {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.widget-area > div:hover,
.widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* ===== TITLES ===== */
.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 12px;
}

.widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 18px;
  width: 4px;
  border-radius: 4px;
  background: #0d6efd;
}

/* ===== ABOUT BLOCK ===== */
.about-wrapper {
  text-align: center;
}

.about-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background-size: cover;
  background-position: center;
  border: 4px solid #f1f3f7;
}

.about-copy {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== LEGAL ===== */
.legal-info-container p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ===== PROMO BLOCK ===== */
.widget_text {
  text-align: center;
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  color: #fff;
}

.widget_text .widget-title {
  color: #fff;
}

.widget_text .widget-title::before {
  background: #fff;
}

.textwidget {
  margin-top: 10px;
}

/* ===== IMAGE WIDGET ===== */
.widget_media_image {
  padding: 0;
  overflow: hidden;
}

.widget_media_image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: 0.3s;
}

.widget_media_image:hover img {
  transform: scale(1.05);
}

/* ===== LINKS ===== */
.widget a {
  color: #0d6efd;
  text-decoration: none;
}

.widget a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .widget-area {
    position: static;
  }
}
h2.widget-title, .section-header-text {
    background: none !important;
}
a.skip-link.screen-reader-text {
    display: none;
}
</style>