/* =========================
   MAIN START
   ========================= */
.icon {
    line-height: 0;
}

/* GLASS for containers and buttons */
.glass {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 0%,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0) 55%
    ),
    rgba(0,0,0,0.65);

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.10),
    inset 0 -2px 4px rgba(0,0,0,0.30);

  backdrop-filter: blur(1px) saturate(160%);
  -webkit-backdrop-filter: blur(1px) saturate(160%);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
      -45deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.00) 55%
    );

  pointer-events: none;
}

/* BUTTON HOVER LIGHT (only buttons) */
.glass-button::before {
  content: "";
  position: absolute;
  inset: -15%;
  border-radius: inherit;

  background: linear-gradient(
    -25deg,
    rgba(255,255,255,0.00) 38%,
    rgba(255,255,255,0.08) 44%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.08) 56%,
    rgba(255,255,255,0.00) 62%
  );

  transform: translateX(-60%);
  opacity: 0;
  transition:
    transform 1.4s cubic-bezier(.4,0,.2,1),
    opacity 0.4s ease;

  pointer-events: none;
}

.glass-button:hover::before {
  transform: translateX(60%);
  opacity: 1;
}

@media (hover: none) {
  .glass-button::before {
    display: none;
  }
}

.glass-button:focus-visible::before {
  transform: translate(60%, 60%);
}

/* GLASS for TABS */
.glass-tabs .e-n-tabs-heading {
  position: relative;

  overflow-x: auto;
  overflow-y: hidden;

  white-space: nowrap;
  -webkit-overflow-scrolling: touch;

  border-radius: 24px;

  background:
    radial-gradient(circle at 20% 0%,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0) 55%
    ),
    rgba(0,0,0,0.65);

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.10),
    inset 0 -2px 4px rgba(0,0,0,0.30);

  backdrop-filter: blur(1px) saturate(160%);
  -webkit-backdrop-filter: blur(1px) saturate(160%);
}

.glass-tabs .e-n-tabs-heading::-webkit-scrollbar {
  display: none;
}

.glass-tabs .e-n-tabs-heading-inner {
  display: flex;
  flex-wrap: nowrap;
}

.glass-tabs .e-n-tab-title {
  flex-shrink: 0;
  position: relative;
}

.glass-tabs .e-n-tab-title:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.25);
}

 /* =========================
   MAIN END
   ========================= */

/* =========================
   HEADER START
   ========================= */

 /* LOGO */
.site-logo {
    text-align: center;
}

.site-logo img {
    max-width: 120px;
    height: auto;
}

.site-logo.elementor-absolute {
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .site-logo img {
        max-width: 80px; /* або 100px, якщо хочеш ще компактніше */
    }
}

@media (max-width: 767px) {
    .icon-last-journey .elementor-icon-list-items.elementor-inline-items 
    .elementor-inline-item::after {
        display: none !important;
        content: none !important;
    }
}

 /* MENU */
 .glass-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  width: 108px;
  padding: 12px 24px;
  border-radius: 16px;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 0%,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0) 55%
    ),
    rgba(0,0,0,0.65);

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.10),
    inset 0 -2px 4px rgba(0,0,0,0.30);


  backdrop-filter: blur(1px) saturate(160%);
  -webkit-backdrop-filter: blur(1px) saturate(160%);

  transition: width 0.65s cubic-bezier(.4,0,.2,1);
}

.glass-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
      -45deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.00) 55%
    );

  pointer-events: none;
}

.elementor-element.menu-items {
  position: static;
}

nav.menu-items {
  position: static;
}

.menu-items {
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}

.menu-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;

  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.menu-list a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle .elementor-icon-box-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elementor-icon-box-description {
  color: #fff;
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.glass-menu.menu-open {
  justify-content: space-between;
}

.glass-menu.menu-open .menu-items {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  display: none;
  cursor: pointer;
  line-height: 0;
}

.glass-menu.menu-open .menu-toggle {
  display: none;
}

.glass-menu.menu-open .menu-close {
  display: flex;
  margin-left: auto;
  z-index: 2;
}

/* MOBILE MENU */

/* active menu item */
.mobile-menu .elementor-nav-menu .current-menu-item > a {
  position: relative;
}

/* glow */
.mobile-menu .elementor-nav-menu .current-menu-item > a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);

  width: 14px;          
  height: 48px;

  background: linear-gradient(
    to right,
    rgba(173,205,226,.0) 0%,
    rgba(173,205,226,.9) 50%,
    rgba(173,205,226,.0) 100%
  );

  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
}

/* SEARCH CONTAINER */
.search-glass {
  position: relative;
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  cursor: pointer;
  transition: width .45s ease;
}

.search-glass.has-value {
  box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.search-glass.active {
  width: 256px;
}

@media (max-width: 768px) {
	.search-glass.active {
		width: auto;
	}
}

.search-icon {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  color: #fff;
  transform: translateY(-50%) scale(.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

.search-glass.has-value .search-clear {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.search-form-inner {
  flex: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.search-glass.active .search-form-inner {
  opacity: 1;
  pointer-events: auto;
}

.search-form-inner input[type="search"],
.swp-input--search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  background: transparent !important;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none !important;
}

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background-image: none !important;
}

/* LIVE SEARCH CONTAINER (GLASS) */
.searchwp-live-search-results {
  position: absolute !important;
  z-index: 999999;
  width: 256px;
  min-width: 256px;
  transform: translate(-40px, 15px);
  overflow: hidden;
  overscroll-behavior: contain;

  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.2), rgba(255,255,255,0) 55%),
    rgba(0,0,0,.65);

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;

  box-shadow:
    inset 0 1px 0 rgba(0,0,0,.1),
    inset 0 -2px 4px rgba(0,0,0,.3),
    0 20px 40px rgba(0,0,0,.35);

  backdrop-filter: blur(8px) saturate(160%);
}

.searchwp-live-search-results::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(-45deg, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}

.searchwp-live-search-results.searchwp-live-search-results-showing {
  min-height: 115px;
}

.searchwp-live-search-result--info p {
	margin-block-end: 0rem;
}

.searchwp-live-search-results-container {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.3) transparent;
}

.searchwp-live-search-results-container::-webkit-scrollbar {
  width: 6px;
}

.searchwp-live-search-results-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.3);
  border-radius: 3px;
}

.searchwp-live-search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background .25s ease;
}

.searchwp-live-search-result:hover {
  background: rgba(255,255,255,.06);
}

.searchwp-live-search-result a {
  text-decoration: none;
  color: #fff;
}

.searchwp-live-search-result--img {
  flex: 0 0 56px !important;
}

.searchwp-live-search-result--img img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.searchwp-live-search-result--info {
  flex: 1;
}

.searchwp-live-search-result--title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.searchwp-live-search-result--desc {
  font-size: 0;
}

.searchwp-live-search-result--desc::after {
  content: "View destination…";
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}

.searchwp-live-search-no-results,
.searchwp-live-search-no-min-chars::after {
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  font-style: italic;
}

.searchwp-live-search-results .spinner div div {
  background: #fff !important;
  box-shadow: 0 0 4px rgba(255,255,255,.6);
}

.searchwp-view-all {
  position: relative;
  margin-top: auto;

  padding: 4px 4px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );

  border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 16px 16px;
}

@media (max-width: 768px) {
  .searchwp-live-search-results {
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    transform: translateY(12px) !important;
  }
}

 /* =========================
   HEADER END
   ========================= */

 /* ===============================
   FOOTER START
================================ */

/*post-icon*/

.post-icon p {
    margin-block-end: 0;
}

.post-icon .elementor-icon-box-content{
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-background {
	mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
-webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}


/* ===============================
   FOOTER END
================================ */

/* =========================
   CATEGORIES START
   ========================= */

@media (min-width: 1025px) {
  .cards-scroll {
    display: flex;
    overflow: visible;
  }

  .cards-scroll > .e-con {
    flex: 1 1 0;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .cards-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cards-scroll > .e-con {
    flex: 0 0 39%;
    scroll-snap-align: start;
  }

  .cards-scroll::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 767px) {
  .cards-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cards-scroll > .e-con {
    flex: 0 0 74%;           
    scroll-snap-align: start;
  }

  .cards-scroll::-webkit-scrollbar {
    display: none;
  }
}

.glass-image .elementor-image-box-img {
  position: relative;
}

.glass-image .elementor-image-box-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.45) 0%,
      rgba(255,255,255,0.15) 35%,
      rgba(255,255,255,0.05) 55%,
      rgba(0,0,0,0.10) 100%
    );

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.35),
    inset 0 -12px 24px rgba(0,0,0,0.35),
    8px 12px 16px rgba(0,0,0,0.65);

  transition: opacity 0.3s ease;
}

.glass-image:hover .elementor-image-box-img::after {
  opacity: 0;
}

/* =========================
   CATEGORIES END
   ========================= */


/* =========================
   ABOUT US MAIN PAGE START
   ========================= */
.divider .elementor-divider-separator,
.divider .elementor-icon-list-item:not(:last-child):after {
    border-radius: 2px;
}

.progress .jet-progress-bar__percent {
    display: none;
}

.progress .jet-progress-bar__status-bar {
    box-shadow: 0 0 6px #5899C4;
}

.progress .elementor-widget-container {
  height: 16px !important;
}

.about-us .elementor-testimonial__header cite {
    justify-content: center;
}

.about-us-main .e-n-tabs-content {
    justify-content: flex-end;
}

/* WPULIKE START */
.wpulike-heart .wp_ulike_general_class {
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.wpulike-heart,
.wpulike-heart .count-box {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 400 !important;
    color: #424242 !important;
}

.wpulike {
    padding: 0;
}

#carousel-wildlife .swiper-pagination-fraction {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* SWIPER ABOUT ANIMAL */
#carousel-wildlife .swiper-pagination-fraction::before {
  content: "";
  width: 10px;
  height: 1px;
  background: currentColor;
  border-radius: 1px;
  order: 1;
  margin: 16px 0;
}

#carousel-wildlife .swiper-pagination-current {
  order: 0;
}

#carousel-wildlife .swiper-pagination-total {
  order: 2;
}

#carousel-wildlife .swiper-pagination-fraction {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* ховаємо слеш */
  font-size: 0;

  /* фіксимо “пустоту” */
  line-height: 1;
}

#carousel-wildlife .swiper-pagination-current,
#carousel-wildlife .swiper-pagination-total {
  font-size: 16px;       /* повертаємо текст */
}


/* =========================
   ABOUT US MAIN PAGE END
   ========================= */


/* =========================
   ARCHIVE START
   ========================= */


.filter {
	font-family: Outfit, sans-serif;
	font-size: 16px;
	line-height: 1.3em;
	font-weight: 500;
	color: #C2C4C9;
	
}

/* Кнопка (закритий dropdown) */
.filter .fs-label-wrap {
    background: #000;
    border: none;
}

/* hover */
.filter .fs-option {
    background: #000;
}

.filter .fs-wrap .fs-arrow {
    width: 14px;
    height: 14px;

    background: url('/wp-content/themes/hello-theme-child-master/assets/img/down_1.svg') no-repeat center;
    background-size: contain;

    border: none !important;
}

.filter .fs-dropdown {
    position: relative !important;
    top: 0 !important;
	  border: none;
	  background: #000;
}

.filter .fs-wrap {
	position: relative;
	width: 100% !important;
}

.filter .fs-search {
    display: none !important;
}

.filter .facetwp-type-fselect .fs-option .fs-option-label {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.filter .facetwp-counter {
  display: none;
}

.filter .facetwp-facet {
    margin-bottom: 0px !important;
}

.filter p {
    margin-block-end: 4px !important;
}

.filter .facetwp-facet .facetwp-checkbox {
    background: url('/wp-content/themes/hello-theme-child-master/assets/img/checkbox-icon.png') 0 50% no-repeat !important;
    background-size: 18px 18px !important;
}

.filter .facetwp-checkbox.checked {
	background: url('/wp-content/themes/hello-theme-child-master/assets/img/checked-checkbox-icon.png') 0 50% no-repeat !important;
    background-size: 18px 18px !important;
}

.filter .facetwp-type-fselect .fs-option .fs-checkbox i {
    background: url('/wp-content/themes/hello-theme-child-master/assets/img/checkbox-icon.png') center no-repeat !important;
    background-size: 18px 18px !important;
    border: none !important;
    background-color: transparent !important;
}

.filter .facetwp-type-fselect .fs-option.selected .fs-checkbox i {
    background: url('/wp-content/themes/hello-theme-child-master/assets/img/checked-checkbox-icon.png') center no-repeat !important;
    background-size: 18px 18px !important;
    border: none !important;
    background-color: transparent !important;
}

/* PAGINATION LEFT BUTTON */
.elementor-pagination .prev {
  padding: 14px 8px;
  

  border: 3px solid #3B7DA8;
  border-right: none;
	border-top: none;
	border-bottom: none;

  border-radius: 16px 0 0 16px;
	margin-right: 48px !important;
}

/* PAGINATION RIGHT BUTTON */
.elementor-pagination .next {
  padding: 14px 8px;
  border: 3px solid #3B7DA8;
  border-left: none;
	border-top: none;
	border-bottom: none;

  border-radius: 0 16px 16px 0;
	margin-left: 48px !important;
}

/* Arhive BLOG Taxonomi filter */
.tax-filter .e-filter .e-filter-item[aria-pressed="true"] {
  color: #adcde2;

  animation: glowPulse 2.5s ease-in-out infinite;
}

.tax-filter .e-filter .e-filter-item:hover {
  color: #adcde2;
  text-shadow:
    0 0 2px rgba(173,205,226,0.5),
    0 0 4px rgba(173,205,226,0.3);
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 3px rgba(173,205,226,0.6),
      0 0 6px rgba(173,205,226,0.4);
  }
  50% {
    text-shadow:
      0 0 5px rgba(173,205,226,0.9),
      0 0 10px rgba(173,205,226,0.6);
  }
  100% {
    text-shadow:
      0 0 3px rgba(173,205,226,0.6),
      0 0 6px rgba(173,205,226,0.4);
  }
}

/* Archive BLOG Category Nav */
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-items.elementor-inline-items {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-items::-webkit-scrollbar {
  display: none;
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-item.elementor-inline-item {
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-item .elementor-icon-list-text {
  color: #ffffff99 !important;
  transition: color 0.3s, text-shadow 0.3s;
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-item a:hover .elementor-icon-list-text {
  color: #adcde2 !important;
  text-shadow:
    0 0 2px rgba(173,205,226,0.5),
    0 0 4px rgba(173,205,226,0.3);
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-item.active .elementor-icon-list-text {
  color: #adcde2 !important;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 3px rgba(173,205,226,0.6),
      0 0 6px rgba(173,205,226,0.4);
  }
  50% {
    text-shadow:
      0 0 5px rgba(173,205,226,0.9),
      0 0 10px rgba(173,205,226,0.6);
  }
  100% {
    text-shadow:
      0 0 3px rgba(173,205,226,0.6),
      0 0 6px rgba(173,205,226,0.4);
  }
}
.blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-item:after {
  display: none !important;
}

@media (min-width: 851px) {
  .blog-cat-nav.elementor-widget-icon-list .elementor-icon-list-items.elementor-inline-items {
    justify-content: center !important;
  }
}
/* =========================
   ARCHIVE END
   ========================= */

/* =========================
   SINGLE PAGE START
   ========================= */

/*commets*/

#wpdcom.wpd-layout-2 .wpd-form .wpd-avatar img.avatar {
    width: 64px;
    height: 64px;
    max-width: 64px;
    border-bottom: none;
    background-color: transparent;
}

#wpdcom.wpd-layout-2 .wpd-comment .wpd-avatar img.avatar {
    width: 48px;
    height: 48px;
    max-width: 48px;
    border-bottom: none;
    background-color: transparent;
}

#wpdcom.wpd-layout-2 .wpd-comment .wpd-comment-header {
    align-items: center;
}

#comments .comment .avatar, #comments .pingback .avatar {
    position: relative;
}

.wmu-add::after {
    content: " Upload image";
    margin-left: 6px;
}
#comments {
    max-width: 100%;
    margin: 0;
}

#wpdcom {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.wpd-comment-author {
	color: #212121 !important;
}

#wpdcom .wpd-prim-button {
    background-color: #ADCDE2;
    color: #000000;
	  border-radius: 16px;
	  font-family: 'Outfit', sans-serif;
	  line-height: 1.3em;
	  font-weight: 600;
		font-size: 18px;
}

#wpdcom .wpd-comment-text {
    color: #424242;
	  font-family: 'Outfit', sans-serif;
	  line-height: 1.3em;
	  font-weight: 400;
	  font-size: 18px;
}

.share-button .elementor-share-btn {
    border-radius: 8px !important;
}

.single-like .wpulike .wp_ulike_general_class .count-box {
    font-family: Outfit important;
    font-size: 20px !important;
	color: #000 !important;
}

.single-like .wpulike .wp_ulike_general_class .wp_ulike_btn {
    border-width: 0;
    width: 32px !important;
    height: 32px !important;
}

.single-like .wpulike .wp_ulike_general_class .wp_ulike_btn.wp_ulike_put_image::after {
    width: 32px !important;
    height: 32px !important;
}

.article a{
	color: #3B7DA8;
	text-decoration: underline;
	font-weight: 500;
}

.more-links a {
    text-decoration: underline;
    font-weight: 500;
}

.more-links a:hover {
    color: #6c757d !important;
    transition: color 0.3s ease;
}

img.image_article {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 991px) {
    img.image_article {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    img.image_article.alignright,
    img.image_article.alignleft,
    img.image_article.aligncenter {
        float: none !important;
        display: block !important;
        margin: 0px auto !important;
        max-height: 300px;
    }
}

.article blockquote {
    background: #E1EDF2 !important;
    border-left: 4px solid #5899C4 !important;
    padding: 24px 24px !important;
    margin: 32px 0 !important;
    border-radius: 16px !important;
    font-style: normal !important;
    line-height: 1.3 !important;
    quotes: none !important;
}

.article blockquote::before,
.article blockquote::after {
    content: none !important;
}

.article blockquote p {
    margin: 0 !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.article blockquote strong {
    color: #000 !important;
    font-weight: 700 !important;
    display: inline-block !important;
    min-width: 110px !important;
}

@media (max-width: 768px) {
    .article blockquote {
        padding: 16px 16px !important;
        margin: 24px 0 !important;
    }
    
    .article blockquote strong {
        min-width: auto !important;
        display: inline !important;
    }
}

.scroll-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
}

.scroll-table table {
  min-width: 500px;
  width: 100%;
  border-collapse: collapse;
}

.scroll-table::after {
  content: "↔ swipe to see more";
  display: block;
  font-size: 0.85em;
  color: #888;
  text-align: center;
  margin-top: 0.5em;
}

@media (min-width: 768px) {
  .scroll-table::after {
    display: none;
  }
}

.share-button .elementor-share-btn {
    border: 2px solid transparent !important;
    transition: border-color 0.2s;
  }
  .share-button .elementor-share-btn:hover {
    border-color: #ADCDE2 !important;
  }

/* =========================
   SINGLE PAGE END
   ========================= */
