
.sidebar-container .sidebar-widget {
  padding: 10px 0;
}

.sidebar-container .sidebar-widget .wp-block-latest-posts li {
  margin-bottom: 10px;
}

.sidebar-container .sidebar-widget .wp-block-latest-posts__post-title {
  font-size: 12px;
}

.content-container .widget-box {
  margin-bottom: 40px;
}

.header-top-section .header-top-section-widget img,
.header-top-section .header-top-section-widget ins {
  display: inline-block;
  width: 728px;
  height: 90px
}

.news-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.news-ticker-label {
  padding: 0 15px;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-ticker-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-ticker-content {
  display: inline-block;
  white-space: nowrap;
}

.news-ticker-content a {
  color: inherit;
  text-decoration: none;
  margin-right: 50px;
}

.ticker-left {
  animation: ticker-left linear infinite;
}

.ticker-right {
  animation: ticker-right linear infinite;
}

@keyframes ticker-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes ticker-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.ticker-alternate {
  animation-direction: alternate;
}

.ah-recent-posts-list {
  padding: 20px 0 0;
}

.ah-recent-posts-list.shadowed {
  -webkit-box-shadow: 0px 0px 5px 0px #C1C1C1;
  box-shadow: 0px 0px 5px 0px #C1C1C1;
}

.ah-recent-posts-list h2 {
  font-size: 20px;
  color: var(--primary-contrast-color);
  background-color: var(--primary-color);
  padding: 5px 20px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 121% 100%, 0 100%);
  max-width: 95%;
}

.ah-recent-posts-list ul {
  list-style: none;
  padding: 20px;
}

.ah-recent-posts-list ul li {
  padding: 5px 0;
}

.ah-recent-posts-list ul li a {
  font-size: 12px;
}

.youtube-videos-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.youtube-video-item {
  flex: 0 0 calc(33.333% - 10px);
  box-sizing: border-box;
  flex: 1;
  cursor: pointer;
}

#ah-yt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#ah-yt-lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

#ah-yt-lb-content {
  width: 60%;
  height: auto;
}

#ah-yt-lb-content iframe {
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 50px;
  width: 100%;
  height: 75vh;
}

.ah-tabbed-posts-root {
  width: 857px;
  border: solid 1px #cdcdcd;
}

.atp-tabs-container {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* Tabs Navigation */
.atp-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  background: #ffffff;
}

/* Tab Buttons */
.atp-tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 14px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: ease-in-out 0.4s;
}

.atp-tab-btn:hover {
  background: #e9e9e9;
}

.atp-tab-btn.active {
  background: var(--primary-color);
  font-weight: bold;
  color: var(--primary-contrast-color);
}

/* Content Area */
.atp-tabs-content {
  padding: 20px;
}

/* Panels */
.atp-tab-panel {
  display: none;
}

.atp-tab-panel.active {
  display: block;
}

.atp-slide {
  position: relative;
}

.atp-slider {
  width: 100%;
}

.atp-tab-post-article {
  display: flex;
  height: 200px
}

.atp-tab-post-media-container {
  width: 40%;
}

.atp-tab-post-text-container {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 30px;
  gap: 7px;
}

.atp-tab-post-title a {
  text-decoration: none;
  color: var(--font-color);
}

.atp-tab-post-media-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.atp-tab-post-media-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */

@media (max-width: 1200px) {
  .ah-tabbed-posts-root {
    width: 100%;
  }
}

@media (max-width: 992px) {

  .header-top-section .header-top-section-widget img,
  .header-top-section .header-top-section-widget ins {
    width: 100% !important;
  }

  #ah-yt-lb-content {
    width: 100%;
    height: auto;
  }
}

@media(max-width:768px) {

  .atp-tab-post-article {
    flex-direction: column;
    height: auto;
  }

  .atp-tab-post-media-container {
    width: 100%;
  }

  .atp-tab-post-text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px;
    gap: 7px;
  }
  .atp-tab-post-media-container img {
    height: 300px;
  }

  .atp-slide-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {

  .atp-tabs-nav {
    flex-direction: column;
  }

  .atp-tab-btn {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  .atp-tab-btn.active {
    border-bottom: 1px solid #ddd;
    border-left: 4px solid #0073aa;
  }
}