/* Default Options */
/* Media Query */
/**
 * Media Query Mixin
 * @param {string} $mq  - min | max | min-max
 * @param {string} $bp1 - breakpoint key (e.g. "lg")
 * @param {string} $bp2 - breakpoint key (e.g. "xl") for min-max upper bound
 */
/* Transform Font Size */
/* --------------------------------- */
.p-bestrate {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-sm);
}
.p-bestrate-caution {
  padding-block: var(--space-xxs);
  padding-inline: var(--space-xs);
  border: 1px solid rgb(255, 60, 60);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: rgb(255, 60, 60);
}
.p-bestrate-section {
  padding-block-start: var(--space-sm);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
  border-block-start: 1px solid rgba(0, 0, 0, 0.1);
}
.p-bestrate-section__title {
  font-weight: 600;
  line-height: 1.2;
}
.p-bestrate-list {
  padding-inline-start: 1.2em;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.6;
}
.p-bestrate-dlist {
  display: grid;
  grid-template-columns: 30% auto;
  border-block-start: 1px solid rgba(0, 0, 0, 0.1);
}
.p-bestrate-dlist dt,
.p-bestrate-dlist dd {
  padding-block: var(--space-xxs);
  border-block-end: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}
.p-bestrate-dlist dt {
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .p-bestrate-list.column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-sm);
  }
}

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