.opacity-medium {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.85;
    top: 0;
    left: 0;
}

ul {
  margin-left: 1.5em;
}

/* #5c75af был этот цвет */

.bg-extra-dark-gray {
    background-color: #253ecc;
}

.page-header-content .title {
    color: #FFF;
}

.page-header .page-header-content {
    padding: 80px 0;
}

.blog-details-content .details-img-wrap img {
    width: 100%;
    height: 330px;
    border-radius: 5px;
}
.hero-content .title {
   text-transform: none;
}

.blog-section-3 {
    background-color: rgba(234, 234, 234, 0.15);
}

.blog-section-4 {
    background-color: #253ecc;
}

.breadcrumb-item a {
    color: #253ecc;
}

.breadcrumb {
    font-size: 14px;
}

.sidebar-widget {
    background-color: #fff2db;
    border-radius: 5px;
}

table.sidebar-info-table {
    color: #1C231F;
}

table.sidebar-info-table td {
   padding: 9px 8px;
}

table.sidebar-info-table td:first-child {
   width: 50%;
   font-weight: bold;
}

/* ----------------------- */

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 14px;
}

.about-list .icon {
  flex-shrink: 0;
  margin-top: 6px; /* подгон под baseline */
  color: #1a40ff; /* или ваш синий */
}

.about-list .text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Адаптивность */
@media (max-width: 600px) {
  .about-list li {
    gap: 10px;
  }

  .about-list .icon i {
    font-size: 1.5em;
  }

  .about-list .text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* ----------------------- */

h2 {
    font-size: 32px;
}

.btn {
    background-color: #253ecc;
}

.tag-label {
  display: inline-block;
  background-color: #e8ebfb;       /* светлый синий фон */
  color: #253ecc;                  /* основной синий */
  padding: 6px 14px;
  margin: 5px 8px 0 0;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid #d0d5f6;       /* слегка темнее для контура */
}

.tag-label:hover {
  background-color: #253ecc;
  color: #fff;
  border-color: #253ecc;
}

.tour-item .tour-content .tour-bottom .price {
    font-size: 22px;
    margin-bottom: 0;
}


.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  font-size: 14px;
  display: none;
  z-index: 9999;
}

.cookie-notice button {
  background-color: #253ecc;
  color: white;
  border: none;
  padding: 6px 14px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-notice button:hover {
  background-color: #1a2f99;
}


.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid #253ecc;
  background-color: #f6f8ff;
  color: #253ecc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-badge .tag-count {
  font-size: 12px;
  margin-left: 6px;
  color: #253ecc;
}

.tag-badge:hover {
  background-color: #253ecc;
  color: #fff;
}

.tag-badge:hover .tag-count {
  color: #fff;
}

/* 📱 Адаптив */
@media (max-width: 480px) {
  .tags-wrapper {
    gap: 6px;
  }

  .tag-badge {
    font-size: 13px;
    padding: 5px 10px;
  }

  .tag-badge .tag-count {
    font-size: 11px;
  }
}


.footer-section .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: brightness(90%);
}

.footer-section p,
.footer-section a,
.footer-section li,
.footer-section h3 {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.ts-primary-btn {
    padding: 15px 25px;
}