.cec-effects-carousel {
  position: relative;
  width: 100%;
}

.cec-effects-carousel .swiper {
  width: 100%;
  overflow: hidden;
  /* padding-bottom: 48px; */
}

.cec-effects-carousel .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.cec-effects-carousel .cec-slide-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  /* border-radius: 24px; */
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.10);
  overflow: hidden;
}

.cec-effects-carousel .cec-slide-card.has-background-media {
  justify-content: flex-end;
}

.cec-effects-carousel .cec-slide-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0f172a;
}

.cec-effects-carousel .cec-background-image,
.cec-effects-carousel .cec-background-video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.cec-effects-carousel .cec-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.cec-effects-carousel .cec-slide-content {
  position: relative;
  z-index: 2;
}

.cec-effects-carousel .cec-slide-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cec-effects-carousel .cec-slide-card.has-background-media .cec-slide-content {
  width: 100%;
}

.cec-effects-carousel .cec-slide-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.cec-effects-carousel .cec-slide-description {
  line-height: 1.65;
}

.cec-effects-carousel .cec-slide-description > *:first-child {
  margin-top: 0;
}

.cec-effects-carousel .cec-slide-description > *:last-child {
  margin-bottom: 0;
}

.cec-effects-carousel .cec-slide-actions {
  margin-top: 8px;
}

.cec-effects-carousel .cec-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  /* background: #111827; */
  color: #ffffff;
  transition: transform .2s ease, opacity .2s ease;
}

.cec-effects-carousel .cec-slide-button:hover,
.cec-effects-carousel .cec-slide-button:focus {
  color: #ffffff;
  opacity: .92;
  transform: translateY(-1px);
}

.cec-effects-carousel .swiper-3d .swiper-slide-shadow-left,
.cec-effects-carousel .swiper-3d .swiper-slide-shadow-right,
.cec-effects-carousel .swiper-3d .swiper-slide-shadow-top,
.cec-effects-carousel .swiper-3d .swiper-slide-shadow-bottom {
  display: none;
}

@media (max-width: 767px) {
  .cec-effects-carousel .cec-slide-title {
    font-size: 1.25rem;
  }
}

.acz-outer {
  width: 100%;
}

.acz-container {
  min-height: 64px;
}

.acz-site-logo img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.acz-site-logo a {
  display: inline-block;
}

.acz-site-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 120px;
  padding: 8px 12px;
  border: 1px dashed #c3c4c7;
  color: #6b7280;
  font-size: 13px;
}

.acz-nav-menu {
  width: 100%;
}

body.acz-nav-menu-lock-scroll {
  overflow: hidden;
}

.acz-nav-menu__toggle-wrap {
  display: none;
  width: 100%;
}

.acz-nav-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

.acz-nav-menu__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.acz-nav-menu__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.acz-nav-menu.is-open .acz-nav-menu__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.acz-nav-menu.is-open .acz-nav-menu__toggle-line:nth-child(2) {
  opacity: 0;
}

.acz-nav-menu.is-open .acz-nav-menu__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.acz-nav-menu__list,
.acz-nav-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acz-nav-menu__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.acz-nav-menu__item {
  position: relative;
}

.acz-nav-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.acz-nav-menu__link:hover,
.acz-nav-menu__link:focus {
  color: inherit;
  text-decoration: none;
}

.acz-nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 220px;
  padding: 8px 0;
  background: var(--acz-nav-dropdown-background, #ffffff);
  box-shadow: 0 18px 40px rgba(17, 24, 39, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.acz-nav-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.acz-nav-menu__item:hover > .sub-menu,
.acz-nav-menu__item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.acz-nav-menu .sub-menu .acz-nav-menu__link {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.acz-nav-menu__submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.acz-nav-menu__submenu-toggle-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

@media (min-width: 1025px) {
  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__item--has-children > .acz-nav-menu__link {
    flex: 1 1 0;
  }

  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__submenu-toggle {
    display: inline-flex;
  }

  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__item--has-children:not(.is-submenu-open) > .sub-menu {
    display: none;
  }

  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__item--has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .acz-nav-menu--submenu-toggle-desktop .acz-nav-menu__item--has-children.is-submenu-open > .acz-nav-menu__submenu-toggle .acz-nav-menu__submenu-toggle-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__item--has-children > .acz-nav-menu__link {
    flex: 1 1 0;
  }

  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__submenu-toggle {
    display: inline-flex;
  }

  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__item--has-children:not(.is-submenu-open) > .sub-menu {
    display: none;
  }

  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__item--has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .acz-nav-menu--submenu-toggle-tablet .acz-nav-menu__item--has-children.is-submenu-open > .acz-nav-menu__submenu-toggle .acz-nav-menu__submenu-toggle-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }
}

@media (max-width: 767px) {
  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__item--has-children > .acz-nav-menu__link {
    flex: 1 1 0;
  }

  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__submenu-toggle {
    display: inline-flex;
  }

  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__item--has-children:not(.is-submenu-open) > .sub-menu {
    display: none;
  }

  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__item--has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .acz-nav-menu--submenu-toggle-mobile .acz-nav-menu__item--has-children.is-submenu-open > .acz-nav-menu__submenu-toggle .acz-nav-menu__submenu-toggle-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }
}

.acz-nav-menu-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 180px;
  padding: 8px 12px;
  border: 1px dashed #c3c4c7;
  color: #6b7280;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .admin-bar .acz-nav-menu{
    /*margin-top: 46px;*/
  }

  .acz-nav-menu .acz-nav-menu__list{
    padding-top: 96px;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__toggle-wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10001;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__list {
    position: absolute;
    z-index: 10000;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 100vh;
    gap: 0;
    overflow-y: auto;
    padding: 24px;
    background: var(--acz-nav-dropdown-background, #ffffff);
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet:not(.is-open) .acz-nav-menu__list {
    display: none;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__link {
    justify-content: flex-start;
    width: 100%;
    padding: 14px 0;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .acz-nav-menu--submenu-toggle-tablet.acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acz-nav-menu--submenu-toggle-tablet.acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__item--has-children > .acz-nav-menu__link {
    flex: 1 1 0;
    width: auto;
  }

  .acz-nav-menu--submenu-toggle-tablet.acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__submenu-toggle {
    display: inline-flex;
  }

  .acz-nav-menu--submenu-toggle-tablet.acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__item--has-children:not(.is-submenu-open) > .sub-menu {
    display: none;
  }

  .acz-nav-menu--submenu-toggle-tablet.acz-nav-menu--responsive.acz-nav-menu--breakpoint-tablet .acz-nav-menu__item--has-children.is-submenu-open > .acz-nav-menu__submenu-toggle .acz-nav-menu__submenu-toggle-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }
}

@media (max-width: 767px) {
  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__toggle-wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10001;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__list {
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 100vh;
    gap: 0;
    overflow-y: auto;
    padding: 24px;
    background: var(--acz-nav-dropdown-background, #ffffff);
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile:not(.is-open) .acz-nav-menu__list {
    display: none;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__link {
    justify-content: flex-start;
    width: 100%;
    padding: 14px 0;
  }

  .acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .acz-nav-menu--submenu-toggle-mobile.acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .acz-nav-menu--submenu-toggle-mobile.acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__item--has-children > .acz-nav-menu__link {
    flex: 1 1 0;
    width: auto;
  }

  .acz-nav-menu--submenu-toggle-mobile.acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__submenu-toggle {
    display: inline-flex;
  }

  .acz-nav-menu--submenu-toggle-mobile.acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__item--has-children:not(.is-submenu-open) > .sub-menu {
    display: none;
  }

  .acz-nav-menu--submenu-toggle-mobile.acz-nav-menu--responsive.acz-nav-menu--breakpoint-mobile .acz-nav-menu__item--has-children.is-submenu-open > .acz-nav-menu__submenu-toggle .acz-nav-menu__submenu-toggle-icon {
    transform: rotate(225deg) translate(-2px, -2px);
  }
}

.acz-post-gallery {
  --acz-entry-duration: 500ms;
  --acz-entry-stagger: 90ms;
  --acz-entry-distance: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.acz-post-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.acz-entry-fade .acz-post-card {
  animation: aczPostCardFadeIn var(--acz-entry-duration, 500ms) ease both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-slide-up .acz-post-card {
  animation: aczPostCardSlideUp var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-slide-left .acz-post-card {
  animation: aczPostCardSlideLeft var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-slide-right .acz-post-card {
  animation: aczPostCardSlideRight var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-slide-down .acz-post-card {
  animation: aczPostCardSlideDown var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-zoom-in .acz-post-card {
  animation: aczPostCardZoomIn var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-flip-up .acz-post-card {
  transform-origin: 50% 100%;
  backface-visibility: hidden;
  animation: aczPostCardFlipUp var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

.acz-entry-blur-in .acz-post-card {
  animation: aczPostCardBlurIn var(--acz-entry-duration, 500ms) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--acz-card-delay, 0ms);
}

@keyframes aczPostCardFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes aczPostCardSlideUp {
  from {
    opacity: 0;
    transform: translateY(var(--acz-entry-distance, 22px));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aczPostCardSlideLeft {
  from {
    opacity: 0;
    transform: translateX(calc(var(--acz-entry-distance, 22px) * -1));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aczPostCardSlideRight {
  from {
    opacity: 0;
    transform: translateX(var(--acz-entry-distance, 22px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aczPostCardSlideDown {
  from {
    opacity: 0;
    transform: translateY(calc(var(--acz-entry-distance, 22px) * -1));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aczPostCardZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aczPostCardFlipUp {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(22deg) translateY(var(--acz-entry-distance, 22px));
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0);
  }
}

@keyframes aczPostCardBlurIn {
  from {
    opacity: 0;
    transform: translateY(calc(var(--acz-entry-distance, 22px) * 0.35)) scale(0.985);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.acz-post-card-media {
  display: block;
  line-height: 0;
}

.acz-post-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.acz-post-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acz-post-card-title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
  display: block;
  box-sizing: border-box;
}

.acz-post-card-title a {
  color: inherit;
  text-decoration: none;
}

.acz-post-tabs {
  --acz-tabs-panel-gap: 14px;
  width: 100%;
}

.acz-post-tabs--dir-left,
.acz-post-tabs--dir-right {
  display: flex;
  gap: var(--acz-tabs-panel-gap, 14px);
  align-items: stretch;
}

.acz-post-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--acz-tabs-panel-gap, 14px);
}

.acz-post-tabs--dir-down .acz-post-tabs-nav {
  order: 2;
  margin-top: var(--acz-tabs-panel-gap, 14px);
  margin-bottom: 0;
}

.acz-post-tabs--dir-down .acz-post-tabs-panels {
  order: 1;
}

.acz-post-tabs--dir-left .acz-post-tabs-nav,
.acz-post-tabs--dir-right .acz-post-tabs-nav {
  flex-direction: column;
  flex-wrap: nowrap;
  min-width: 200px;
  margin-bottom: 0;
}

.acz-post-tabs--dir-left .acz-post-tabs-panels,
.acz-post-tabs--dir-right .acz-post-tabs-panels {
  flex: 1;
}

.acz-post-tabs--dir-right .acz-post-tabs-nav {
  order: 2;
}

.acz-post-tabs--dir-right .acz-post-tabs-panels {
  order: 1;
}

.acz-post-tabs-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d0d7de;
  background: #f6f8fa;
  color: #1f2328;
  border-radius: 8px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
  transition: all .18s ease;
}

.acz-post-tabs-icon {
  display: inline-flex;
  line-height: 1;
  margin-right: 8px;
}

.acz-post-tabs-button:hover,
.acz-post-tabs-button:focus {
  border-color: #2271b1;
  outline: 0;
}

.acz-post-tabs-button.is-active {
  background: #2271b1;
  border-color: #2271b1;
  color: #fff;
}

.acz-post-tabs-panel {
  display: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
}

.acz-post-tabs-panel.is-active {
  display: block;
}

.acz-post-tabs-panel-inner {
  display: flex;
  gap: 14px;
}

.acz-post-tabs-panel-inner--img-up,
.acz-post-tabs-panel-inner--img-down {
  flex-direction: column;
}

.acz-post-tabs-panel-inner--img-right {
  flex-direction: row-reverse;
}

.acz-post-tabs-panel-media {
  width: 100%;
  max-width: 320px;
  flex: 0 0 auto;
}

.acz-post-tabs-panel-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.acz-post-tabs-panel-main {
  min-width: 0;
}

.acz-post-tabs-panel-inner--img-up .acz-post-tabs-panel-media,
.acz-post-tabs-panel-inner--img-down .acz-post-tabs-panel-media {
  max-width: 100%;
}

.acz-post-tabs-panel-inner--img-down .acz-post-tabs-panel-media {
  order: 2;
}

.acz-post-tabs-panel-inner--img-down .acz-post-tabs-panel-main {
  order: 1;
}

.acz-post-tabs-panel > *:first-child {
  margin-top: 0;
}

.acz-post-tabs-panel > *:last-child {
  margin-bottom: 0;
}

.acz-post-tabs-panel-title {
  margin: 0 0 10px;
}

.acz-post-tabs-panel-content > *:first-child {
  margin-top: 0;
}

.acz-post-tabs-panel-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .acz-post-tabs--dir-left,
  .acz-post-tabs--dir-right {
    display: block;
  }

  .acz-post-tabs--dir-left .acz-post-tabs-nav,
  .acz-post-tabs--dir-right .acz-post-tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    margin-bottom: var(--acz-tabs-panel-gap, 14px);
  }

  .acz-post-tabs--dir-right .acz-post-tabs-nav,
  .acz-post-tabs--dir-right .acz-post-tabs-panels {
    order: initial;
  }

  .acz-post-tabs-panel-inner,
  .acz-post-tabs-panel-inner--img-right {
    flex-direction: column;
  }

  .acz-post-tabs-panel-media {
    max-width: 100%;
    width: 100%;
  }
}

.acz-post-card-custom-meta {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.acz-faq {
  display: grid;
  gap: 12px;
}

.acz-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.acz-faq-title {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 14px 16px;
  font-weight: 600;
}

.acz-faq-title::-webkit-details-marker {
  display: none;
}

.acz-faq-content {
  padding: 0 16px 16px;
}

.acz-faq-content > *:first-child {
  margin-top: 0;
}

.acz-faq-content > *:last-child {
  margin-bottom: 0;
}

.acz-post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.875rem;
  color: #6b7280;
}

.acz-post-card-excerpt {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.acz-post-gallery-empty {
  color: #6b7280;
}

.acz-post-gallery-pagination {
  margin-top: 24px;
}

.acz-post-gallery-pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.acz-post-gallery-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}

.acz-post-gallery-pagination .page-numbers a,
.acz-post-gallery-pagination .page-numbers.current
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  background: #fff;
  gap: 0.5em;
}

.acz-post-gallery-pagination .page-numbers.dots{
  align-items: end;
  height: 100%;
}

.acz-post-gallery-pagination .page-numbers .current {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.acz-post-gallery-pagination .acz-pagination-icon,
.acz-post-gallery-pagination .acz-pagination-icon > i,
.acz-post-gallery-pagination .acz-pagination-icon > svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.acz-post-gallery-pagination .page-numbers .next::before,
.acz-post-gallery-pagination .page-numbers .next::after,
.acz-post-gallery-pagination .page-numbers .prev::before,
.acz-post-gallery-pagination .page-numbers .prev::after {
  content: none !important;
  display: none !important;
}

.acz-post-filter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.acz-post-filter-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.acz-post-filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.acz-post-gallery-widget.is-loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity .2s ease;
}

.acz-post-gallery-widget[data-acz-exit-effect="fade-out"] .acz-post-gallery-ajax-slot {
  will-change: opacity;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card {
  position: relative;
  isolation: isolate;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%);
  color: #fff;
  justify-content: flex-end;
  pointer-events: none;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-body * {
  pointer-events: auto;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-title,
.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-title a,
.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-meta,
.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-excerpt,
.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-custom-meta {
  color: #fff;
}

/* Content Positions */
.acz-post-gallery-widget.acz-layout-overlay.acz-content-pos-top .acz-post-card-body {
  justify-content: flex-start;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}

.acz-post-gallery-widget.acz-layout-overlay.acz-content-pos-middle .acz-post-card-body {
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.acz-post-gallery-widget.acz-layout-overlay.acz-content-pos-bottom .acz-post-card-body {
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%);
}

.acz-post-card-button-wrapper {
  margin-top: 15px;
}

.acz-post-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #111827;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 8px;
}

.acz-post-card-button:hover {
  background-color: #374151;
  color: #fff;
}

.acz-post-card-button svg,
.acz-post-card-button i {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-button-wrapper {
  margin-top: 10px;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-button {
  background-color: #fff;
  color: #111827;
}

.acz-post-gallery-widget.acz-layout-overlay .acz-post-card-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .acz-post-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .acz-post-gallery {
    grid-template-columns: 1fr;
  }
}

.acz-taxonomy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acz-taxonomy-list-item a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.acz-taxonomy-list-item a:hover {
  opacity: 0.8;
}

.acz-taxonomy-list-count {
  font-size: 0.85em;
  opacity: 0.7;
}

.acz-featured-post-button {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

.acz-featured-post-button-wrapper {
  width: 100%;
}

.acz-post-carousel-widget .swiper {
  padding-bottom: 44px;
}

.acz-post-carousel-widget .swiper-button-prev,
.acz-post-carousel-widget .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.15);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.14);
  color: #111827;
  transition: all 0.25s ease;
}

.acz-post-carousel-widget .swiper-button-prev::after,
.acz-post-carousel-widget .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.acz-post-carousel-widget .swiper-button-prev:hover,
.acz-post-carousel-widget .swiper-button-next:hover {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.acz-post-carousel-widget .swiper-pagination {
  position: static;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.acz-post-carousel-widget .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  background: #9ca3af;
}

.acz-post-carousel-widget .swiper-pagination-bullet-active {
  background: #111827;
}

.acz-post-carousel-widget.acz-layout-featured_active .swiper {
  overflow: visible;
  padding-bottom: 44px;
}

.acz-post-carousel-widget.acz-layout-featured_active .swiper-slide {
  transition: z-index 0.35s ease;
}

.acz-post-carousel-widget.acz-layout-featured_active .swiper-slide .acz-post-card {
  transform: scale(1);
  transform-origin: top center;
  transition: transform 0.35s ease;
}

.acz-post-carousel-widget.acz-layout-featured_active .swiper-slide-active {
  z-index: 4;
}

.acz-post-carousel-widget.acz-layout-featured_active .swiper-slide-active .acz-post-card {
  transform: scale(1.5);
}

.acz-post-list-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.acz-post-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 20px;
  align-items: start;
}

.acz-post-list-item-title {
  margin: 0 0 10px;
}

.acz-post-list-item-content > *:first-child {
  margin-top: 0;
}

.acz-post-list-item-content > *:last-child {
  margin-bottom: 0;
}

.acz-post-list-item-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.acz-post-list-item-gallery.acz-post-list-item-gallery-single .acz-post-list-image {
  grid-column: 1 / -1;
}

.acz-post-list-image {
  margin: 0;
}

.acz-post-list-image img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .acz-post-list-item {
    grid-template-columns: 1fr;
  }
}

.acz-current-taxonomy-widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acz-current-taxonomy-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acz-current-taxonomy-label {
  font-weight: 600;
}

.acz-current-taxonomy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acz-current-taxonomy-item {
  margin: 0;
  padding: 0;
}

.acz-current-taxonomy-pill {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  padding: 8px 14px;
  line-height: 1.2;
}

.acz-current-taxonomy-empty {
  color: #6b7280;
}

.acz-current-custom-meta-widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acz-current-custom-meta-line {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.acz-current-custom-meta-label {
  font-weight: 600;
}

.acz-current-custom-meta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acz-current-custom-meta-label {
  font-weight: 600;
}

.acz-current-custom-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acz-current-custom-meta-item {
  margin: 0;
  padding: 0;
}

.acz-current-custom-meta-pill {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  padding: 8px 14px;
  line-height: 1.2;
}

.acz-current-custom-meta-empty {
  color: #6b7280;
}

.acz-media-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.acz-media-gallery-item {
  margin: 0;
}

.acz-media-gallery-link {
  display: block;
  text-decoration: none;
}

.acz-media-gallery-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.acz-current-media-gallery-empty {
  color: #6b7280;
}

.acz-media-gallery-carousel .swiper {
  width: 100%;
  overflow: hidden;
}

.acz-media-gallery-carousel .swiper-slide {
  height: auto;
}

.acz-media-gallery-carousel .acz-media-gallery-item {
  height: 100%;
}

/* ACZ Colored Icon List */
.acz-colored-icon-list {
  display: flex;
  flex-direction: column;
}

.acz-colored-icon-list-layout-inline .acz-colored-icon-list {
  flex-direction: row;
  flex-wrap: wrap;
}

.acz-colored-icon-list-layout-vertical .acz-colored-icon-list {
  flex-direction: column;
}

.acz-colored-icon-list-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.acz-colored-icon-list-layout-inline .acz-colored-icon-list-item {
  display: inline-flex;
}

.acz-colored-icon-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.acz-colored-icon-list-text {
  flex: 1 1 auto;
}

/* ACZ Timeline */
.acz-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
}

.acz-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background-color: #d1d5db;
}

.acz-timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acz-timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; /* Default based on 20px padding + 2px line/2 - 5px dot radius */
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #111827;
  border: 2px solid #fff;
  z-index: 1;
  box-sizing: border-box;
}

.acz-dot-align-top .acz-timeline-item::before {
  top: 6px;
  transform: none;
}

.acz-dot-align-center .acz-timeline-item::before {
  top: 50%;
  transform: translateY(-50%);
}

.acz-dot-align-bottom .acz-timeline-item::before {
  top: auto;
  bottom: 6px;
  transform: none;
}

.acz-timeline-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acz-timeline-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acz-timeline-details-vertical .acz-timeline-details {
  flex-direction: column;
}

.acz-timeline-details-horizontal .acz-timeline-details {
  flex-direction: row;
  align-items: center;
}

.acz-timeline-details-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.acz-timeline-title {
  margin: 0;
}

.acz-timeline-company,
.acz-timeline-location,
.acz-timeline-employment {
  font-weight: 600;
}

.acz-timeline-date {
  font-size: 0.9em;
  opacity: 0.8;
}

.acz-timeline-content {
  line-height: 1.6;
}

.acz-timeline-content > *:first-child {
  margin-top: 0;
}

.acz-timeline-content > *:last-child {
  margin-bottom: 0;
}

/* ACZ Site Logo */
.acz-site-logo {
  display: block;
  line-height: 0;
}

.acz-site-logo a {
  display: inline-block;
}

.acz-site-logo img {
  height: auto;
  max-width: 100%;
}
