.actions-list {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 40px 100px 80px 100px;
  box-sizing: border-box;
  display: block;
  align-items: start;
}

@media (max-width: 600px) {
  .actions-list {
    padding: 80px 5%;
  }
}

/* Головний заголовок */
.actions-list .main-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 132%;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #3F342A;
  margin: 0;
  text-align: center;
}

@media (max-width: 600px) {
  .actions-list .main-title {
    font-size: 24px;
  }
}

/* Блок для контейнера для карток послуг і елементів навігації */
.actions-list .services-container {
  overflow: hidden;
}

.actions-list .services-container .scroll-line {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(223, 195, 136, 0.3);
  margin: 40px 0 30px 0;
}

.actions-list .services-container .scroll-line .scroll-active-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 400px;
  height: 6px;
  border-radius: 3px;
  background: rgba(223, 195, 136, 0.3);
}

.actions-list .services-container .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 600px) {
  .actions-list .services-container .nav-btn {
    display: none;
  }
}

.actions-list .services-container .left-nav {
  left: 40px;
}

.actions-list .services-container .right-nav {
  right: 40px;
}

/* Контейнер для карток послуг */
.actions-list .services-grid {
  display: flex;
  gap: 20px;
  align-items: start;
  margin: 40px 0 20px 0;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Загальні стилі для карток послуг */
.actions-list .services-grid .service-card {
  position: relative;
  width: 295px;
  min-width: 295px;
  opacity: 1;
  border-radius: 20px;
  padding: 16px 16px 64px 16px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
}

/* Зображення в картках */
.actions-list .services-grid .service-card .card-image {
  width: 100%;
  border-radius: 15px;
}

.actions-list .services-grid .service-card .sticker {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 24px;
  left: 22px;
  width: max-content;
  height: auto;
  padding: 4px 12px;
  border-radius: 21px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  background-color: #ED7A54;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 13px;
  line-height: 148%;
  letter-spacing: 4%;
  text-transform: uppercase;
}

/* Текст заголовка картки */
.actions-list .services-grid .service-card .card-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #3F342A;
  margin: 10px 0 5px 0;
}

@media (max-width: 600px) {
  .actions-list .services-grid .service-card .card-title {
    font-size: 16px;
  }
}

/* Описовий текст */
.actions-list .services-grid .service-card .card-description {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #5D554D;
}

/* Кнопка "Детальніше" */
.actions-list .services-grid .service-card .detail-btn {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 20px;
  width: calc(100% - 40px);
  height: 32px;
  background-color: rgba(255, 255, 255, 1);
  border: none;
  cursor: pointer;
  color: #3F342A;
  text-decoration: none;
}

.actions-list .services-grid .service-card .detail-btn .detail-text {
  font-size: 16px;
}

@media (max-width: 600px) {
  .actions-list .services-grid .service-card .detail-btn .detail-text {
    font-size: 14px;
  }
}

.actions-list .services-grid .service-card .detail-btn .detail-icon {
  max-width: 32px;
  height: 32px;
}

.actions-list .services-grid .service-card .detail-btn .detail-icon img {
  width: 100%;
}

.actions-list .services-grid .service-card .detail-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

/**/
.actions-list .services-grid {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.actions-list .services-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Корекція ширини карток для слайдера (щоб snap працював коректно) */
.actions-list .services-grid .service-card {
  flex: none;
  /* забороняємо стискання */
  width: 295px;
  /* фіксована ширина на десктопі (як у попередніх карткових слайдерах) */
}

@media (max-width: 600px) {
  .actions-list .services-grid {
    gap: 15px;
    justify-content: center;
  }

  .actions-list .services-grid .service-card {
    min-width: 320px;
    width: 100%;
  }
}


.actions-list .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 600px) {
  .actions-list .header-row {
    justify-content: center;
  }
}

/* Стилізація випадаючого списку */
.actions-list .filter-container {
  position: relative;
  min-width: 250px;
}

.actions-list .filter-dropdown {
  background: #FFF;
  width: 266px;
  height: 40px;
  border-radius: 20px;
  padding: 4px 16px;
  cursor: pointer;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #3F342A;
}

@media (max-width: 600px) {
  .actions-list .filter-dropdown {
    font-size: 14px;
  }
}

.actions-list .filter-dropdown .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.actions-list .filter-dropdown .arrow.open {
  transform: rotate(0deg);
}

.actions-list .filter-menu {
  position: absolute;
  top: 110%;
  right: 0;
  width: 100%;
  background: #FFF;
  border-radius: 12px;
  list-style: none;
  padding: 10px 0;
  z-index: 100;
  box-shadow: 0px 4px 28px 0px #00000014;
  margin: 0;
}

.actions-list .filter-menu li {
  padding: 10px 20px;
  cursor: pointer;
}

.actions-list .filter-menu li.active,
.actions-list .filter-menu li:hover {
  color: #ED7A54;
}

/* Пагінація */
.actions-list .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.actions-list .pag-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.actions-list .pag-num.active {
  background: #F2EAD8;
  font-weight: bold;
}

.actions-list .pag-arrow {
  background: #FFF;
  border: 1px solid #EEE;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


.actions-single {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 100px 60px 100px;
}

@media (max-width: 600px) {
  .actions-single {
    padding: 10px 5% 60px 5%;
  }
}

.actions-single .content-block {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

@media (max-width: 600px) {
  .actions-single .content-block {
    flex-direction: row;
    gap: 56px;
  }
}

.actions-single .left-col {}

@media (max-width: 600px) {
  .actions-single .left-col {}
}

.actions-single .right-col {
  display: block;
}

@media (max-width: 600px) {
  .actions-single .right-col {
    display: none;
  }
}

.actions-single .right-col img {
  width: 400px;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.actions-single .white-block {
  width: 100%;
  position: relative;
  justify-content: center;
  flex-direction: column;
  display: flex;
  padding: 48px 28px;
  background-color: #FFF;
  border-radius: 20px;
}

.actions-single .white-block::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 256px;
  height: 195px;
  background-image: url('/views/images/elements/about-corner.svg');
}

.actions-single .mob-img-block {
  display: none;
}

@media (max-width: 600px) {
  .actions-single .mob-img-block {
    display: block;
    margin: 20px 0 20px 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .actions-single .mob-img-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }
}

.actions-single .top-string {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  align-items: center;
}

.actions-single .sticker {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}

.actions-single .sticker[v-if*="promo"] {
  background: #ED7A54;
}

.actions-single .sticker[v-if*="event"] {
  background: #ED7A54;
}

.actions-single .sticker[v-if*="news"] {
  background: #ED7A54;
}

.actions-single .date {
  margin-left: auto;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 13px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #3F342A;
}

.actions-single .main-title {
  margin: 0 0 20px;
  font-family: e-Ukraine;
  font-weight: 500;
  font-size: 34px;
  line-height: 136%;
  letter-spacing: 2%;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .actions-single .main-title {
    font-size: 24px;
  }
}

.actions-single .description {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #5D554D;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .actions-single .description {
    font-size: 16px;
  }
}

.actions-single .button {
  display: flex;
  align-items: center;
  background: #ED7A54;
  color: #FFF;
  border: none;
  width: max-content;
  height: 60px;
  gap: 10px;
  border-radius: 30px;
  padding: 8px 28px 8px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  z-index: 3;
}

@media (max-width: 600px) {
  .actions-single .button {
    height: 52px;
  }
}

.actions-single .button:hover,
.actions-single .button:focus {
  background: #d35400;
}

.actions-single .button .button-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  display: block;
}

.actions-single .button .button-text {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .actions-single .button .button-icon img {
    width: 24px;
    height: 24px;
  }

  .actions-single .button .button-text {
    font-size: 16px;
  }
}

.actions-single .article h3 {
  font-family: e-Ukraine;
  font-weight: 500;
  font-size: 24px;
  line-height: 144%;
  letter-spacing: 1%;
  text-transform: uppercase;
  margin: 32px 0 16px;
}

@media (max-width: 600px) {
  .actions-single .article h3 {
    font-size: 21px;
  }
}

.actions-single .article-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.actions-single .article-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #5D554D;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0%;
}

@media (max-width: 600px) {
  .actions-single .article-list li {
    font-size: 16px;
    padding-left: 36px;
  }
}

.actions-single .article-list .number {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #ED7A54;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: 0%;
}

@media (max-width: 600px) {
  .actions-single .article-list .number {
    font-size: 14px;
    width: 24px;
    height: 24px;
  }
}

.actions-single .article-list .badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: 0%;
}

.actions-single .article-list .badge img {
  width: 28px;
  height: 28px;
}

@media (max-width: 600px) {
  .actions-single .article-list .badge {
    width: 24px;
    height: 24px;
  }
  .actions-single .article-list .badge img {
    width: 24px;
    height: 24px;
  }
}

.actions-single .article-list .dot {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 4px;
  height: 4px;
  color: #FFF;
  border-radius: 50%;
  background: #3F342A;
}

@media (max-width: 600px) {
  .breadcrumbs {
    padding: 100px 5% 10px 5% !important;
  }
}