@import url(https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap);
@import url(https://use.typekit.net/cfe2sko.css);
.posts-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.posts-container a {
  text-decoration: none;
  color: #000;
}
.posts-container .post-card {
  display: flex;
  overflow: hidden;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid;
}
.posts-container .post-card .post-card-image {
  flex: 0 0 500px; /* Fixed size for image */
  height: 300px;
  position: relative;
}
.posts-container .post-card .post-card-image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.posts-container .post-card .post-card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.posts-container .post-card .post-card-title {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 2rem;
}
.posts-container .post-card .post-card-title a:hover {
  color: #6f6f6f;
}
.posts-container .post-card .post-card-meta {
  display: flex;
  font-family: "Source Sans 3", sans-serif;
}
.posts-container .post-card .post-card-meta p {
  margin: 0;
}
.posts-container .post-card .post-card-meta .post-card-author {
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5px;
}
.posts-container .post-card .post-card-meta .post-card-author a {
  color: #00834d;
}
.posts-container .post-card .post-card-meta .post-card-author a a:hover {
  text-decoration: underline;
  color: #00a32a;
}
.posts-container .post-card .post-card-meta .post-card-author:hover {
  text-decoration: underline;
  color: #00a32a;
}
.posts-container .post-card .post-card-meta .post-card-date {
  font-size: 1rem;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
.posts-container .post-card .post-card-excerpt {
  flex-grow: 1;
  font-family: "Source Sans 3", sans-serif;
}
.posts-container .post-card .post-card-excerpt p {
  margin: 0;
}
.posts-container .post-card .post-card-excerpt p .rt-reading-time {
  margin-bottom: 1rem;
  font-style: italic;
}
.posts-container .post-card .post-card-footer {
  text-align: right;
}
.posts-container .post-card .post-card-readmore {
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}
.posts-container .post-card .post-card-readmore .fa {
  margin-left: 0.5rem;
}

.sidebar-title-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.sidebar-title-container .sidebar-title {
  font-size: 2rem;
  font-weight: 700;
}
.sidebar-title-container hr {
  width: 100%;
  border: none;
  border-bottom: 2px solid black;
}

.front-page-widget {
  margin-top: 1.5rem;
}
.front-page-widget .widget {
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0.3rem;
  padding-inline: 0.3rem;
}
.front-page-widget .widget img {
  width: 100%;
  max-height: 20rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

main#primary.site-main.front-page {
  grid-template-columns: 1fr;
}

.hero-banner {
  grid-template-rows: clamp(30vh, 30rem, 50vh);
}
.hero-banner .breaking-news {
  grid-column: 1/2;
  grid-row: 1/2;
  overflow: hidden;
}
.hero-banner .breaking-news .splide#image-slider {
  max-height: clamp(30vh, 30rem, 50vh);
}
.hero-banner .breaking-news .splide#image-slider .splide__arrow {
  width: 32px;
  height: 32px;
  background: black;
  opacity: 0.3;
}
.hero-banner .breaking-news .splide#image-slider .splide__arrow svg {
  fill: white;
}
.hero-banner .breaking-news .splide#image-slider .splide__slide {
  height: clamp(30vh, 30rem, 50vh);
  overflow: hidden;
}
.hero-banner .breaking-news .splide#image-slider .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-banner .breaking-news .splide#image-slider .splide__slide .title-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
}
.hero-banner .breaking-news .splide#image-slider .splide__arrow--prev:hover {
  background-color: #6f6f6f;
}
.hero-banner .breaking-news .splide#image-slider .splide__arrow--next:hover {
  background-color: #6f6f6f;
}
.hero-banner .trending-articles {
  grid-column: 2/3;
  grid-row: 1/2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.hero-banner .trending-articles .trending-article {
  overflow: hidden;
  position: relative;
}
.hero-banner .trending-articles .trending-article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-banner .trending-articles .trending-article .title-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
}

.front-page-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
}
.front-page-grid .slide-link, .front-page-grid .article-link {
  text-decoration: none;
  color: inherit;
}
.front-page-grid h3 {
  margin: 0;
}
.front-page-grid .post-meta {
  font-size: 0.9em;
  margin-top: 5px;
  margin-bottom: 0;
}
.front-page-grid .post-meta p {
  margin: 0;
}
.front-page-grid .post-meta .author {
  font-style: italic;
  font-weight: 300;
}
.front-page-grid .category-section .category-title-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 1rem 0;
}
.front-page-grid .category-section .category-title-container h2 {
  color: #000;
  margin: 0;
  font-size: 2rem;
  font-style: normal;
  font-family: "jubilat", serif;
  font-weight: 700;
}
.front-page-grid .category-section .category-title-container .category-title-hr {
  flex-grow: 1;
  border: none;
  height: 2px;
  background-color: #00843D;
}
.front-page-grid .category-section .post {
  margin-bottom: 1rem;
  border-bottom: 1px solid;
  padding: 0 0 0.75rem 0;
}
.front-page-grid .category-section .post h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.front-page-grid .category-section .post h3 a strong {
  font-style: normal;
  font-weight: 600;
}
.front-page-grid .category-section .post p {
  margin: 0;
}
.front-page-grid .category-section .post p.author {
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
}
.front-page-grid .category-section .post a {
  text-decoration: none;
  color: black;
}
.front-page-grid .category-section .post a:hover {
  color: #6f6f6f;
}
.front-page-grid .category-posts {
  display: flex;
  flex-direction: column;
}
.front-page-grid .category-posts .post .author a {
  color: #00843d;
}
.front-page-grid .category-posts .post .author a:hover {
  color: #00a32a;
  text-decoration: underline;
}

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.site-main.single .featured-image {
  width: 100%;
  height: auto;
}
.site-main.single .site-main.single {
  padding-inline: 1rem;
}
.site-main.single h1.entry-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.site-main.single .post-meta .author {
  margin-bottom: 0;
  margin-top: 0;
}
.site-main.single .post-meta .author a {
  text-decoration: none;
  color: black;
  font-weight: 300;
  font-style: italic;
  font-size: 1.25rem;
}
.site-main.single .post-meta .date {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
}
.site-main.single .single-excerpt, .site-main.single .featured-image-caption {
  font-style: italic;
  font-weight: 400;
}
.site-main.single p {
  font-size: 1.15rem;
}

@media (max-width: 874px) {
  .site-header {
    display: grid;
    grid-template-rows: auto 1px auto 1px;
    grid-gap: 10px;
    align-items: center;
    justify-items: center;
  }
  .site-header .logo-container {
    width: 100%;
    justify-self: center;
    grid-row: 1;
    max-width: 200px;
    font-size: 12px;
    margin-top: 12px;
  }
  .site-header .logo-container .tagline-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 2px;
    margin: 5px 0 0 0;
  }
  .site-header .logo-container .tagline-container .green-line-space {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .site-header .logo-container .tagline-container .green-line-space .tagline-meta {
    display: flex;
    gap: 6px;
  }
  .site-header .logo-container .tagline-container .bottom-green-line {
    height: 2px;
    background-color: #3E8051;
    flex-grow: 1;
    margin-top: 5px;
    margin-left: 5%;
    max-width: 90%;
  }
  .menu-search-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .menu-search-container .menu-toggle,
  .menu-search-container .search-toggle {
    justify-self: start;
  }
  .menu-search-container .search-toggle {
    justify-self: end;
  }
  .menu-toggle,
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-inline: 1em;
    font-size: 1.5rem;
    color: #000 !important;
    border-radius: 12px;
    padding: 4px;
    width: 10%;
    transition: 0.3s ease;
  }
  .menu-toggle:active {
    background-color: rgba(0, 132, 61, 0.25);
  }
  /* Shared Overlay Styles */
  .menu-overlay,
  .search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 30, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  .menu-overlay.active,
  .search-overlay.active {
    display: flex;
  }
  .menu-overlay ul,
  .search-overlay ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
  }
  .menu-overlay li,
  .search-overlay li {
    margin-bottom: 1rem;
  }
  .menu-overlay a,
  .search-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    transition: color 0.3s ease;
  }
  .menu-overlay a:hover,
  .search-overlay a:hover {
    color: #ccc;
  }
  /* Unique Menu Overlay Styles */
  /* Unique Search Overlay Styles */
  .search-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .search-overlay .search-form {
    width: 80%;
    max-width: 500px;
    margin: 1rem auto;
    display: flex;
  }
  .search-overlay .search-form input[type=search] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1.21rem;
    border-radius: 12px 0 0 12px;
  }
  .search-overlay .search-form input[type=submit] {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .search-overlay .search-form input[type=submit]:hover {
    background-color: rgb(0, 98.4, 204);
  }
  .search-overlay .search-form .search-submit {
    display: flex;
    width: 45px;
    border-radius: 0 12px 12px 0;
    border: none;
    color: #fff;
    background-color: #00834d;
  }
  .search-overlay .search-form .search-submit span {
    font-size: 1.32rem;
    justify-content: center;
    display: flex;
    align-self: center;
    margin-left: 5px;
  }
  .close-menu,
  .close-search {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 2rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  nav#site-navigation {
    display: none;
  }
  .post-card {
    flex-direction: column;
  }
  .posts-container .post-card {
    height: unset;
  }
  .posts-container .post-card .post-card-image {
    flex: 0 0 auto;
    height: 220px;
    padding: 0 12px;
  }
  main#primary.site-main .front-page-grid {
    padding-inline: 0.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  main#primary.site-main .front-page-grid .breaking-news, main#primary.site-main .front-page-grid .trending-articles {
    grid-column: unset;
    grid-row: unset;
  }
  main.single {
    padding-inline: 1rem;
  }
  .sidebar {
    display: none;
  }
  .page .site-main {
    padding-inline: 1rem;
  }
}
@media (min-width: 875px) {
  .active {
    display: block !important;
  }
  .site-header {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto 1px auto;
  }
  .site-header .logo-container {
    width: 100%;
    justify-self: center;
    grid-row: 1;
    max-width: 400px;
    margin-bottom: 1rem;
  }
  .site-header .logo-container .tagline-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  .site-header .logo-container .tagline-container .green-line-space {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .site-header .logo-container .tagline-container .green-line-space .tagline-meta {
    display: flex;
    gap: 10px;
  }
  .site-header .logo-container .tagline-container .bottom-green-line {
    height: 2px;
    background-color: #3E8051;
    flex-grow: 1;
    margin-top: 12px;
    margin-left: 5%;
    max-width: 90%;
  }
  .site-header .header-line {
    background-color: #000;
  }
  .site-header .header-line:first-child {
    grid-row: 2;
  }
  .site-header .header-line:last-child {
    grid-row: 4;
  }
  .site-header .menu-search-container {
    display: none;
  }
  .site-header nav#site-navigation {
    grid-row: 3;
    display: flex;
    grid-template-columns: 8fr 1fr;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 1em;
  }
  .site-header nav#site-navigation .social-header-icons:hover {
    background-color: rgba(119, 119, 119, 0.32);
  }
  .site-header nav#site-navigation div.main-navigation {
    width: -moz-fit-content;
    width: fit-content;
  }
  .site-header nav#site-navigation div.main-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
  }
  .site-header nav#site-navigation div.main-navigation ul .current-menu-item {
    z-index: 1;
    margin-top: 3px;
    border-bottom: 3px solid green;
  }
  .site-header nav#site-navigation div.main-navigation ul li {
    margin: 0 1rem;
  }
  .site-header nav#site-navigation div.main-navigation ul li a {
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    padding: 5px;
    border-radius: 5px;
  }
  .site-header nav#site-navigation div.main-navigation ul li a:hover {
    background-color: rgba(119, 119, 119, 0.25);
  }
  .site-header nav#site-navigation div.main-navigation ul li a:active {
    background-color: rgba(0, 132, 61, 0.25);
    transform: scale(0.8);
  }
  .site-header nav#site-navigation .search-icon-container {
    display: flex;
    justify-content: flex-end;
    width: -moz-min-content;
    width: min-content;
  }
  .site-header nav#site-navigation .search-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2;
    grid-row: 1;
    margin-right: 1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }
  .site-header nav#site-navigation .search-icon:hover {
    background-color: rgba(119, 119, 119, 0.32);
  }
  .site-header nav#site-navigation .search-icon:active {
    background-color: rgba(0, 132, 61, 0.25);
    transform: scale(0.8);
  }
  .site-header nav#site-navigation .search-container {
    display: none;
    position: relative;
  }
  .site-header nav#site-navigation .search-container form.search-form {
    display: flex;
    height: 38px;
    width: 100%;
    max-width: 1200px;
  }
  .site-header nav#site-navigation .search-container form.search-form.focused input[type=search], .site-header nav#site-navigation .search-container form.search-form.focused button[type=submit] {
    border-color: #000;
  }
  .site-header nav#site-navigation .search-container form.search-form:hover input[type=search], .site-header nav#site-navigation .search-container form.search-form:hover button[type=submit], .site-header nav#site-navigation .search-container form.search-form:focus-within input[type=search], .site-header nav#site-navigation .search-container form.search-form:focus-within button[type=submit] {
    border-color: #000;
    outline: #000;
  }
  .site-header nav#site-navigation .search-container form.search-form input[type=search] {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border-radius: 20px 0 0 20px;
    border: 1px solid #ccc;
    border-right: none;
    font-size: 1rem;
    background-color: #fff;
    margin: 0;
    height: 38px;
  }
  .site-header nav#site-navigation .search-container form.search-form input[type=search]::-moz-placeholder {
    color: #aaa;
  }
  .site-header nav#site-navigation .search-container form.search-form input[type=search]::placeholder {
    color: #aaa;
  }
  .site-header nav#site-navigation .search-container form.search-form button[type=submit] {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    border-left: none;
    cursor: pointer;
    margin: 0;
    height: 38px;
  }
  .site-header nav#site-navigation .search-container form.search-form button[type=submit] .fa-search {
    color: #aaa;
  }
  .menu-overlay, .search-overlay {
    display: none;
  }
  .front-page-grid:nth-child(2) {
    padding-inline: 1rem;
  }
  .posts-container .post-card .post-card-image {
    flex: 0 0 30%;
    width: 100%;
    height: 220px;
  }
  .sidebar {
    display: none;
  }
  .page .site-main {
    padding-inline: 1rem;
  }
}
@media (min-width: 1366px) {
  div.body-container {
    margin-inline: auto;
    max-width: 1366px;
  }
  main {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }
  main .front-page-grid:nth-child(2) {
    padding-inline: 0;
  }
  main.archive-grid {
    grid-template-columns: 4fr 1fr;
    border-top: 1px solid;
    margin-top: 3rem;
    padding-top: 1rem;
  }
  aside#secondary {
    margin: 0 0.5rem;
  }
  aside#secondary .widget {
    border-radius: 0.75rem;
    padding: 0.2rem;
    margin-bottom: 1rem;
  }
  .sidebar {
    display: block;
  }
  .page .site-main {
    padding-inline: 0;
  }
}
.site-footer {
  display: grid;
  grid-template-rows: auto auto auto auto; /* Three rows */
  color: #fff;
  background: #1F7938 !important;
  margin-top: 2rem;
}
.site-footer .footer-social-icons,
.site-footer .footer-copyright {
  display: flex;
  justify-content: center; /* Center the content */
  align-items: center;
}
.site-footer .footer-content {
  display: flex;
  justify-content: space-between; /* Space between the two columns */
  align-items: flex-start;
  max-width: 1366px;
  margin: 15px auto 15px auto;
}
.site-footer .footer-logo {
  display: flex;
  justify-content: left;
  padding: 1rem 0;
  max-height: 64px;
  max-width: 64px;
  min-height: 64px;
  min-width: 64px;
}
.site-footer .footer-link {
  color: #1F7938;
}
.site-footer .social-icon {
  border-radius: 50%;
  transition: all 0.3s ease;
}
.site-footer .social-icon:hover {
  transform: rotate(5deg);
  background-color: #2b8a3e;
}
.site-footer .social-icon:active {
  transform: scale(0.92) rotate(0deg);
}
.site-footer .footer-social-media {
  align-self: flex-end;
}
.site-footer .footer-social-media ul {
  display: flex;
  padding: 0;
}
.site-footer .footer-social-media ul .fa {
  margin-right: 0.5rem; /* Space between icon and text */
  font-size: 2rem;
}
.site-footer .footer-social-media ul a {
  color: #1F7938;
  text-decoration: none;
  padding: 5px;
  margin: 0 5px;
}
.site-footer .footer-social-media ul a:after {
  color: #1F7938;
}
.site-footer .footer-site-directory,
.site-footer .footer-site-navigation {
  margin-left: 3rem;
  margin-top: 15px;
}
.site-footer .footer-site-directory a,
.site-footer .footer-site-navigation a {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-site-directory a:hover,
.site-footer .footer-site-navigation a:hover {
  text-decoration: underline;
}
.site-footer .footer-site-directory a:after,
.site-footer .footer-site-navigation a:after {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-site-directory h3,
.site-footer .footer-site-navigation h3 {
  margin: 0;
  cursor: pointer; /* To indicate dropdown functionality */
  font-weight: bolder;
}
.site-footer .footer-site-directory ul,
.site-footer .footer-site-navigation ul {
  list-style-type: none;
  border-left: 1.48px solid rgba(255, 255, 255, 0.55);
  padding-left: 5px;
  margin-top: 10px;
}
.site-footer .footer-site-directory .dropdown,
.site-footer .footer-site-navigation .dropdown {
  display: none; /* Hide dropdown by default */
}
.site-footer .footer-site-directory.active .dropdown,
.site-footer .footer-site-navigation.active .dropdown {
  display: block; /* Show dropdown on active class */
}
.site-footer .footer-page-links {
  background: #35712C;
}
.site-footer .footer-page-links ul {
  list-style: none;
}
.site-footer .footer-page-links ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-page-links ul li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-copyright {
  background: #275D38 !important;
}
.site-footer h3 {
  color: #fff;
  display: block;
  font-size: 1.17em;
  margin: 18px 0 0 0;
  font-weight: bolder !important;
}
.site-footer .mobile-footer-site-directory,
.site-footer .mobile-footer-site-navigation {
  display: none;
}
.site-footer .mobile-footer-site-directory ul,
.site-footer .mobile-footer-site-navigation ul {
  display: none;
}
.site-footer .mobile-footer-site-directory.active ul,
.site-footer .mobile-footer-site-navigation.active ul {
  display: none;
}
@media (max-width: 937px) {
  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .footer-social-media {
    justify-content: center;
    align-items: center;
    text-align: center;
    align-self: center;
    flex: 0;
  }
  .site-footer .site-footer .footer-social-media {
    align-self: center;
  }
  .site-footer .footer-logo {
    justify-content: center;
    padding: 1rem 0;
    max-height: 64px;
    max-width: 64px;
    min-height: 64px;
    min-width: 64px;
  }
  .site-footer .social-icon {
    width: 36px;
    height: 36px;
  }
  .site-footer .mobile-footer-site-directory {
    text-align: start;
  }
  .site-footer .mobile-footer-site-directory a {
    color: #fff;
    text-decoration: none;
  }
  .site-footer .mobile-footer-site-directory a:hover {
    text-decoration: underline;
  }
  .site-footer .mobile-footer-site-directory hr {
    border-top: 1px solid #fff;
    width: 75vw;
    margin: 0 0 10px 0;
  }
  .site-footer .mobile-footer-site-directory h3 {
    margin: 0;
    font-weight: bolder;
  }
  .site-footer .mobile-footer-site-directory h3:hover {
    cursor: pointer;
  }
  .site-footer .mobile-footer-site-navigation {
    text-align: start;
  }
  .site-footer .mobile-footer-site-navigation a {
    color: #fff;
    text-decoration: none;
  }
  .site-footer .mobile-footer-site-navigation a:hover {
    text-decoration: underline;
  }
  .site-footer .mobile-footer-site-navigation hr {
    border-top: 1px solid #fff;
    width: 75vw;
    margin: 0 0 22px 0;
  }
  .site-footer .mobile-footer-site-navigation h3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    margin-top: 12px;
    font-weight: bolder;
  }
  .site-footer .mobile-footer-site-navigation h3:hover {
    cursor: pointer;
  }
  .site-footer .mobile-footer-site-navigation ul {
    list-style-type: none;
  }
  .site-footer .footer-site-directory,
  .site-footer .footer-site-navigation {
    display: none; /* Hide desktop links */
  }
  .site-footer .mobile-footer-site-directory,
  .site-footer .mobile-footer-site-navigation {
    display: inline; /* Show mobile links */
    padding: 5px;
  }
  .site-footer .mobile-footer-site-directory h3,
  .site-footer .mobile-footer-site-navigation h3 {
    display: inline;
    vertical-align: middle;
  }
  .site-footer .mobile-footer-site-directory ul,
  .site-footer .mobile-footer-site-navigation ul {
    display: none; /* Hide lists initially */
  }
  .site-footer .mobile-footer-site-directory.active ul,
  .site-footer .mobile-footer-site-navigation.active ul {
    display: inline; /* Show lists on click */
    padding: 5px;
  }
  .site-footer .mobile-footer-site-directory.active ul h3,
  .site-footer .mobile-footer-site-navigation.active ul h3 {
    display: inline;
    vertical-align: middle;
  }
}
.site-footer .footer-copyright {
  font-size: 12px;
}
.site-footer .dropdown-arrow {
  display: grid;
  justify-content: right;
  font-size: 22px;
  transition: transform 0.3s ease; /* Smooth rotation transition */
  margin: 0 0 5px auto;
  width: 7.14px;
  float: right;
}
.site-footer .dropdown-arrow.rotate {
  transform: rotate(90deg); /* Rotate 90 degrees */
}
.site-footer .dropdown-arrow:hover {
  cursor: pointer;
}
.site-footer .dropdown-arrow-2 {
  display: grid;
  justify-content: right;
  font-size: 22px;
  transition: transform 0.3s ease; /* Smooth rotation transition */
  margin: 0 0 5px auto;
  width: 7.14px;
  float: right;
}
.site-footer .dropdown-arrow-2.rotate {
  transform: rotate(90deg); /* Rotate 90 degrees */
}
.site-footer .dropdown-arrow-2:hover {
  cursor: pointer;
}
@media (max-width: 696px) {
  .site-footer .footer-content {
    margin: 0;
    padding: 0 20px;
  }
  .site-footer .footer-site-directory,
  .site-footer .footer-site-navigation {
    margin: 0;
    width: 100%;
  }
  .site-footer .footer-social-media {
    text-align: center;
  }
}

h1 {
  font-family: "Jubilat", sans-serif;
}

h2 {
  font-family: "Jubilat", sans-serif;
}

.header-line {
  width: 100%;
  border: none;
  border-bottom: 2px solid #000;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  padding-top: 0.5rem;
  background-color: #f7f7f7;
}
body main {
  margin-top: 1rem;
}

.adrotate_widgets img {
  width: 100%;
}

/* Style pagination links */
.pagination {
  width: 100%; /* Make pagination span full width */
  text-align: center; /* Center the pagination */
  margin: 4rem 0; /* Add space around pagination */
}

.pagination ul {
  list-style: none; /* Remove list bullets */
  padding: 0;
}

.pagination li {
  display: inline-block; /* Display pagination links inline */
  margin: 0 5px;
}

.pagination a {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
}

.pagination a:hover {
  background-color: #838383;
  color: #fff;
}

.pagination .current {
  background-color: #00843d;
  color: #fff;
  padding: 8px 16px;
  border: 1px solid #00834d;
  border-radius: 12px;
}

/* For medium screens (up to 847px) */
@media (max-width: 847px) {
  .pagination li {
    margin: 0;
  }
  .pagination ul {
    padding: 0;
    display: inline-flex;
  }
}
/* For smaller screens (up to 413px) */
@media (max-width: 413px) {
  /* Hide pagination items in between, except first, last, and "next/prev" */
  .pagination ul li:not(:first-child):not(:last-child):nth-child(n+4) {
    display: none;
  }
  .pagination ul li {
    margin: 0 2px; /* Reduce margin for smaller screens */
  }
  .pagination a {
    padding: 5px 10px; /* Reduce padding on smaller screens */
    font-size: 14px; /* Adjust text size for smaller screens */
  }
}
