

/* Start:/local/components/custom/services_list/templates/.default/style.css?17530966104241*/
/* Глобально */
* {
  box-sizing: border-box;
}

/* Основной layout */
.albion-services-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
  font-family: 'Roboto', sans-serif;
}

/* Боковое меню */
.albion-sidebar {
  width: 280px;
  background-color: transparent;
  padding-left: 0; /* убран отступ, чтобы выравнивать с контентом */
}

/* Заголовок меню */
.albion-menu-title {
  background-color: #baa373;
  padding: 14px 20px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  border-left: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  margin-bottom: 20px;
}

/* Список меню */
.albion-menu-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Пункты списка */
.albion-menu-list li {
  all: unset; /* сбрасывает все браузерные стили */
  display: block;
  line-height: 20px;
}

/* Ссылки */
.albion-menu-list li a {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  display: block;
  word-break: break-word;
  transition: color 0.2s, font-weight 0.2s;
}

/* Hover */
.albion-menu-list li a:hover {
  color: #000;
  font-weight: 500;
}

/* Активный */
.albion-menu-list li.active a {
  font-weight: 700;
  color: #2e2e2f;
}

/* Контент справа */
.albion-section-content {
  flex: 1;
}

/* Обёртка карточек */
.albion-services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Карточка */
.albion-service-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  max-width: 905px;
}

/* Изображение */
.albion-service-image img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* Заголовок карточки */
.albion-service-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Кнопка */
.albion-service-btn {
  align-self: flex-start;
  margin-top: 10px;
  padding: 10px 25px;
  background-color: #bca673;
  color: white;
  text-decoration: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #f2f2f2;
}


@media (max-width: 991px) {
  .albion-sidebar {
    display: none;
  }
}


/* --------- Блок с описанием преимуществ --------- */
.albion-advantages-block {
  background-color: #baa373;
  color: #fff;
  padding: 40px 30px;
  margin: 40px 0;
  border-radius: 0;
}

.albion-advantages-block p {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.7;
}

.albion-advantages-block strong {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.form-wrapper {
  background-color: #bca673;
  padding: 20px;
  margin-top: 40px;
}

.form-container {
  display: flex;
  gap: 10px;
  width: 100%;
}

.form-container input[type="text"],
.form-container input[type="tel"] {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 16px;
  color: #333;
  background-color: white;
}

.form-container input::placeholder {
  color: #999;
}

.form-container button {
  background-color: #444;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.form-container button:hover {
  background-color: #333;
}

@media (max-width: 600px) {
  .form-container {
    flex-direction: column;
  }

  .form-container button {
    width: 100%;
  }
}

.albion-gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}

.albion-gallery-slider {
  display: flex;
  transition: transform 0.3s ease;
  gap: 20px;
}

.albion-slide {
  flex: 0 0 calc(50% - 10px); /* 2 слайда в ряду */
}

.albion-slide img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #baa373;
  color: #fff;
  font-size: 28px;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 1;
  border-radius: 4px;
}

.gallery-arrow.prev {
  left: -10px;
}

.gallery-arrow.next {
  right: -10px;
}

/* End */
/* /local/components/custom/services_list/templates/.default/style.css?17530966104241 */
