.color-theme-dark .offeatures:not(.color-theme-light) {
  --color-background-card: #08133A;
}
.color-theme-dark .offeatures:not(.color-theme-light) .offeatures__section__title {
  --color-background-card: #0A1744;
}
.offeatures {
  border: 1px solid var(--color-border);
  background: var(--color-body);
  border-radius: 12px;
  overflow: hidden;
}
.offeatures__cell {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offeatures__cell--accent {
  background: var(--color-background-card);
}
.offeatures, .offeatures p:not(.offeatures__p--small):not(.offeatures__p--large) {
  font-size: 15px;
}
.offeatures__accordion-label,
.offeatures__p--small {
  font-size: 12px;
  opacity: 0.7;
}
.offeatures__p--large {
  color: var(--color-title);
  font-size: 18px;
  font-weight: 700;
}
.offeatures__accordion-label {
  font-weight: 700;
  opacity: 0.5;
}
.offeatures__section__title {
  background: var(--color-background-card);
}
.offeatures__section__title .icon:before {
  width: 16px;
  height: 16px;
}
.offeatures__section-label {
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}
.offeatures__row {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  align-items: stretch;
}
.offeatures__row:not(:last-child), .offeatures__section__title:not(:last-child) {
  color: var(--color-title);
  border-bottom: 1px solid var(--color-border);
}
.offeatures__cell:not(:first-child) {
  text-align: center;
}
.offeatures__accordion-toggle {
  width: 100%;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.offeatures__chevron {
  display: inline-flex;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.offeatures__accordion-toggle[aria-expanded="true"] .offeatures__chevron { 
  transform: rotate(90deg); 
}
.offeatures__accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.offeatures__cell__icon {
  margin: 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-card);
  border-radius: 100%;
}
.offeatures__cell__icon svg {
  width: 50%;
  height: auto;
}
.offeatures__cell__icon svg path {
  stroke: var(--color-text-primary);
}
.offeatures__cell__icon--tick {
  background: var(--color-green);
}
.offeatures__cell__icon--tick svg path {
  stroke: var(--color-body);
}
.offeatures .buttons__item {
  width: 100%;
  line-height: 1.2;
}

{# RESPONSIVE #}
@media screen and (max-width: 992px) {
  .offeatures, .offeatures p:not(.offeatures__p--small):not(.offeatures__p--large) {
    font-size: 13px;
  }
  .offeatures__accordion-label,
  .offeatures__p--small {
    font-size: 11px;
    opacity: 0.7;
  }
  .offeatures__p--large {
    font-size: 15px;
    font-weight: 700;
  }
  .offeatures__section-label {
    font-size: 11px;
    gap: 8px;
  }
  .offeatures__cell {
    padding: 12px 8px;
  }
  .offeatures__row .offeatures__cell:not(.offeatures__cell--label):not(.offeatures__cell--feature) {
    margin: 4px;
    border-radius: 8px;
  }
  .offeatures__cell--label {
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }
  .offeatures__accordion-label, .offeatures__spacer {
    display: none;
  }
  .offeatures__cell--feature {
    text-align: center;
  }
  .offeatures__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .offeatures__cell--label, .offeatures__cell--feature { 
    grid-column: span 2;
  }
  .offeatures .buttons__item {
    line-height: 1.2;
    border-radius: 12px;
    padding: 12px;
  }
  .offeatures__section__title .icon:before {
    width: 12px;
    height: 12px;
  }
  .offeatures__cell__icon {
    width: 18px;
    height: 18px;
  }
}