/* БлагоГрад — страница коллекции (категория товаров) 2026 */

.bg-collection-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(380px, 42vw, 520px);
  overflow: hidden;
}

.bg-collection-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bg-collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.14) 100%);
}

.bg-collection-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: min(100% - 32px, var(--bg-wrap));
  min-height: inherit;
  padding-top: calc(var(--bg-header-h) + clamp(56px, 10vh, 112px));
  padding-bottom: clamp(24px, 4vw, 40px);
  color: #fff;
}

.bg-collection-hero__content,
.bg-collection-hero__breadcrumbs {
  box-sizing: border-box;
}

.bg-collection-hero__content {
  max-width: 760px;
}

.bg-collection-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.bg-collection-hero__text {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
}

.bg-collection-hero__breadcrumbs {
  margin: clamp(32px, 5vw, 56px) 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.bg-collection-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.bg-collection-hero__breadcrumbs a:hover {
  color: #fff;
}

.bg-collection-hero__breadcrumbs span:last-child {
  color: #fff;
}

.bg-collection-body {
  background: #fff;
  padding: 32px 0 64px;
}

.bg-collection-features {
  background: #f3f2ef;
  border-bottom: 1px solid var(--bg-border);
}

.bg-collection-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.bg-collection-features__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.bg-collection-features__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-collection-features__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bg-collection-features__text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--bg-text);
}

/* Layout */
.bg-collection-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.bg-collection-sidebar {
  position: sticky;
  top: calc(var(--bg-header-h) + 16px);
}

.bg-collection-sidebar__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.bg-collection-sidebar__group {
  border-bottom: 1px solid var(--bg-border);
}

.bg-collection-sidebar__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}

.bg-collection-sidebar__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-collection-sidebar__icon img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.bg-collection-sidebar__link {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-text);
  text-decoration: none;
  line-height: 1.3;
}

.bg-collection-sidebar__group.is-active .bg-collection-sidebar__link {
  color: var(--bg-beige-hover);
}

.bg-collection-sidebar__chevron {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E") center/12px no-repeat;
  cursor: pointer;
  transition: transform 0.2s;
}

.bg-collection-sidebar__group.is-open .bg-collection-sidebar__chevron {
  transform: rotate(180deg);
}

.bg-collection-sidebar__subs {
  margin: 0;
  padding: 0 0 12px 42px;
  list-style: none;
  display: none;
}

.bg-collection-sidebar__group.is-open .bg-collection-sidebar__subs {
  display: block;
}

.bg-collection-sidebar__filter {
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: var(--bg-muted);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.bg-collection-sidebar__filter:hover,
.bg-collection-sidebar__filter.is-active {
  color: var(--bg-beige-hover);
}

.bg-collection-sidebar__promo {
  position: relative;
  margin-top: 24px;
  padding: 24px 20px 22px;
  border-radius: 16px;
  background-color: var(--bg-beige-light);
  background-image: var(--bg-collection-promo-image);
  background-position: right bottom;
  background-size: min(72%, 220px) auto;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bg-collection-sidebar__promo-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  max-width: 92%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bg-text);
}

.bg-collection-sidebar__promo p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  max-width: 88%;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bg-muted);
}

.bg-collection-sidebar__promo .bg-catalog-cta__btn {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 14px;
  padding: 12px 20px;
  color: #fff;
}

/* Main */
.bg-collection-main__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.bg-collection-main__desc {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bg-muted);
}

.bg-collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.bg-collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bg-collection-filters button,
.bg-collection-filters__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid #e0ddd6;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  color: var(--bg-text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.bg-collection-filters button:hover,
.bg-collection-filters__link:hover {
  border-color: var(--bg-accent);
}

.bg-collection-filters button.is-active,
.bg-collection-filters__link.is-active {
  background: var(--bg-production-btn, var(--bg-accent));
  border-color: var(--bg-production-btn, var(--bg-accent));
  color: #fff;
}

.bg-collection-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bg-collection-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bg-muted);
}

.bg-collection-sort select {
  border: 1px solid #e0ddd6;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--bg-text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E") right 10px center/12px no-repeat;
  appearance: none;
  cursor: pointer;
}

.bg-collection-view {
  display: flex;
  gap: 4px;
}

.bg-collection-view button {
  width: 36px;
  height: 36px;
  border: 1px solid #e0ddd6;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  opacity: 0.6;
}

.bg-collection-view button.is-active {
  opacity: 1;
  border-color: var(--bg-accent);
  background: #f5f4f1;
}

.bg-collection-view button[data-view="grid"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23444'%3E%3Crect x='1' y='1' width='6' height='6' rx='1'/%3E%3Crect x='9' y='1' width='6' height='6' rx='1'/%3E%3Crect x='1' y='9' width='6' height='6' rx='1'/%3E%3Crect x='9' y='9' width='6' height='6' rx='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.bg-collection-view button[data-view="list"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23444'%3E%3Crect x='1' y='2' width='14' height='3' rx='1'/%3E%3Crect x='1' y='7' width='14' height='3' rx='1'/%3E%3Crect x='1' y='12' width='14' height='3' rx='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Product grid */
.bg-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.bg-collection-grid.is-list {
  grid-template-columns: 1fr;
}

.bg-col-product {
  display: flex;
  flex-direction: column;
  background: #f5f4f1;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.bg-col-product.is-hidden {
  display: none;
}

.bg-col-product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bg-collection-grid.is-list .bg-col-product {
  flex-direction: row;
  align-items: stretch;
}

.bg-col-product__media {
  display: block;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}

.bg-collection-grid.is-list .bg-col-product__media {
  flex: 0 0 200px;
  aspect-ratio: auto;
  min-height: 160px;
}

.bg-col-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s;
}

.bg-col-product:hover .bg-col-product__media img {
  transform: scale(1.03);
}

.bg-col-product__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bg-col-product__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.bg-col-product__title a {
  color: inherit;
  text-decoration: none;
}

.bg-col-product__desc {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bg-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bg-col-product__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-text);
  text-decoration: none;
  margin-top: auto;
}

.bg-col-product__link:hover {
  color: var(--bg-beige-hover);
}

.bg-collection-more {
  margin-top: 32px;
}

.bg-collection-more__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--bg-production-btn, var(--bg-accent));
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s;
}

.bg-collection-more__btn:hover {
  background: var(--bg-production-btn-hover, var(--bg-accent-hover));
}

.bg-collection-more__btn.is-done {
  opacity: 0.6;
  cursor: default;
}

/* About collection */
.bg-collection-about {
  padding: 48px 0 16px;
  background: #f3f2ef;
}

.bg-collection-about__card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 40px);
}

.bg-collection-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr) minmax(0, 0.96fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.bg-collection-about__photo img {
  width: 100%;
  border-radius: 16px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bg-collection-about__content h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.bg-collection-about__content p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bg-muted);
}

.bg-collection-about__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.bg-collection-about__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--bg-text);
}

.bg-collection-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: center/11px 8px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath fill='none' stroke='%23B99272' stroke-width='1.6' d='M1 4.5 4.2 7.5 11 1.5'/%3E%3C/svg%3E");
  border: 1.5px solid var(--bg-accent);
}

.bg-collection-about__blueprint {
  border-radius: 12px;
  overflow: hidden;
}

.bg-collection-about__blueprint img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Bottom project CTA */
.bg-collection-project-cta {
  padding: 16px 0 64px;
  background: #f3f2ef;
}

.bg-collection-project-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
}

.bg-collection-project-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.bg-collection-project-cta p {
  margin: 0 0 28px;
  color: var(--bg-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
}

.bg-collection-project-cta__visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bg-collection-project-cta__visual img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .bg-collection-layout {
    grid-template-columns: 1fr;
  }

  .bg-collection-sidebar {
    position: static;
  }

  .bg-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bg-collection-about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bg-collection-about__blueprint {
    grid-column: 1 / -1;
  }

  .bg-collection-project-cta__card {
    grid-template-columns: 1fr;
  }

  .bg-collection-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bg-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bg-collection-about__grid,
  .bg-collection-project-cta__card {
    grid-template-columns: 1fr;
  }

  .bg-collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .bg-collection-controls {
    justify-content: space-between;
  }

  .bg-collection-grid.is-list .bg-col-product {
    flex-direction: column;
  }

  .bg-collection-grid.is-list .bg-col-product__media {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bg-collection-grid {
    grid-template-columns: 1fr;
  }

  .bg-collection-features__grid {
    grid-template-columns: 1fr;
  }
}

.bg-collection-projects {
  padding: 48px 0 56px;
  background: #fff;
}

.bg-collection-projects__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.bg-collection-projects__head h2 {
  margin: 0;
  font-family: var(--bg-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bg-collection-projects__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-accent);
  text-decoration: none;
  white-space: nowrap;
}

.bg-collection-projects__link:hover {
  color: var(--bg-accent-hover);
}

.bg-collection-projects-wrap {
  position: relative;
  padding: 0 48px;
}

.bg-collection-projects-prev,
.bg-collection-projects-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--bg-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 2;
}

.bg-collection-projects-prev {
  left: 0;
}

.bg-collection-projects-next {
  right: 0;
}

.bg-collection-projects-prev::after,
.bg-collection-projects-next::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border: solid var(--bg-text);
  border-width: 0 1.5px 1.5px 0;
}

.bg-collection-projects-prev::after {
  transform: rotate(135deg) translate(-1px, 1px);
}

.bg-collection-projects-next::after {
  transform: rotate(-45deg) translate(-1px, 1px);
}

.bg-collection-projects-slider {
  overflow: hidden;
}

.bg-collection-projects-slider .swiper-wrapper {
  align-items: stretch;
}

.bg-collection-projects-slider .swiper-slide {
  width: auto;
  max-width: none;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.bg-collection-projects .bg-sv-project-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #f9f7f2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ece8e1;
  box-shadow: 0 4px 20px rgba(30, 30, 30, 0.05);
}

.bg-collection-projects .bg-sv-project-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bg-collection-projects .bg-sv-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bg-collection-projects .bg-sv-project-card:hover .bg-sv-project-card__media img {
  transform: scale(1.03);
}

.bg-collection-projects .bg-sv-project-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 24px;
}

.bg-collection-projects .bg-sv-project-card__body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.bg-collection-projects .bg-sv-project-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.bg-collection-projects .bg-sv-project-card__meta {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #8a8a8a;
}

.bg-collection-projects .bg-sv-project-card__label {
  margin: 14px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-text);
}

.bg-collection-projects .bg-sv-project-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #8a8a8a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.5em;
}

.bg-collection-seo {
  padding: 48px 0 24px;
  background: #f7f5f0;
}

.bg-collection-seo__inner {
  max-width: 880px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bg-text, #1a1a1a);
}

.bg-collection-seo__inner h2,
.bg-collection-seo__inner h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.bg-collection-seo__inner p {
  margin: 0 0 14px;
}

.bg-collection-seo__inner ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.bg-collection-seo__table-wrap {
  margin: 20px 0 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--bg-border, #ddd6cf);
}

.bg-collection-seo__inner table.seo-table,
.bg-collection-seo__inner table,
.bg-collection-seo__table-wrap table {
  display: table !important;
  width: 100%;
  min-width: 520px;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
}

.bg-collection-seo__inner table.seo-table thead,
.bg-collection-seo__inner table thead,
.bg-collection-seo__inner table.seo-table tbody,
.bg-collection-seo__inner table tbody,
.bg-collection-seo__table-wrap table thead,
.bg-collection-seo__table-wrap table tbody {
  display: table-row-group !important;
}

.bg-collection-seo__inner table.seo-table tr,
.bg-collection-seo__inner table tr,
.bg-collection-seo__table-wrap table tr {
  display: table-row !important;
}

.bg-collection-seo__inner table.seo-table th,
.bg-collection-seo__inner table.seo-table td,
.bg-collection-seo__inner table th,
.bg-collection-seo__inner table td,
.bg-collection-seo__table-wrap table th,
.bg-collection-seo__table-wrap table td {
  display: table-cell !important;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--bg-border, #ddd6cf);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.bg-collection-seo__inner table.seo-table th,
.bg-collection-seo__inner table th,
.bg-collection-seo__table-wrap table th {
  background: var(--bg-section, #f7f4f1);
  font-weight: 600;
  font-size: 14px;
  color: var(--bg-text, #1e1e1e);
  border-bottom: 2px solid var(--bg-border, #ddd6cf);
}

.bg-collection-seo__inner table.seo-table td:first-child,
.bg-collection-seo__inner table td:first-child,
.bg-collection-seo__inner table.seo-table th:first-child,
.bg-collection-seo__inner table th:first-child,
.bg-collection-seo__table-wrap table td:first-child,
.bg-collection-seo__table-wrap table th:first-child {
  width: 38%;
  color: var(--bg-muted, #6f6f6f);
  font-weight: 500;
}

.bg-collection-seo__inner table.seo-table td:last-child,
.bg-collection-seo__inner table td:last-child,
.bg-collection-seo__inner table.seo-table th:last-child,
.bg-collection-seo__inner table th:last-child,
.bg-collection-seo__table-wrap table td:last-child,
.bg-collection-seo__table-wrap table th:last-child {
  width: 62%;
  color: var(--bg-text, #1e1e1e);
}

.bg-collection-seo__inner table.seo-table tbody tr:nth-child(even) td,
.bg-collection-seo__inner table tbody tr:nth-child(even) td,
.bg-collection-seo__table-wrap table tbody tr:nth-child(even) td {
  background: rgba(247, 244, 241, 0.55);
}

.bg-collection-seo__inner table.seo-table tbody tr:last-child td,
.bg-collection-seo__inner table tbody tr:last-child td,
.bg-collection-seo__table-wrap table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .bg-collection-seo__inner table.seo-table,
  .bg-collection-seo__inner table,
  .bg-collection-seo__table-wrap table {
    min-width: 480px;
    font-size: 14px;
  }

  .bg-collection-seo__inner table.seo-table th,
  .bg-collection-seo__inner table.seo-table td,
  .bg-collection-seo__inner table th,
  .bg-collection-seo__inner table td,
  .bg-collection-seo__table-wrap table th,
  .bg-collection-seo__table-wrap table td {
    padding: 10px 12px;
  }
}

.bg-collection-aeo-faq {
  padding: 32px 0 48px;
  background: #fff;
}

.bg-collection-aeo-faq .aeo-faq-block {
  max-width: 880px;
}

.bg-collection-aeo-faq .aeo-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.bg-collection-aeo-faq .aeo-intro {
  margin: 0 0 24px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.6;
}

.bg-collection-aeo-faq .aeo-item {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bg-collection-aeo-faq .aeo-question {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.bg-collection-aeo-faq .aeo-answer p {
  margin: 0;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.85);
}
