.tr-customer-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
  gap: 1.5rem;
  margin: 0;
  padding: 2rem;
  box-sizing: border-box;
  color: var(--tr-color-notice-orange-text, #945600);
  background: var(--tr-color-notice-orange-bg, #fce2c5);
  border: 0.0625rem solid var(--tr-color-notice-orange-border, #ffc56f);
}

.tr-customer-notice__icon {
  display: inline-flex;
  width: 2.125rem;
  height: 2.125rem;
  color: inherit;
}

.tr-customer-notice__icon-svg {
  display: block;
  width: 2.125rem;
  height: 2.125rem;
}

.tr-customer-notice__headline {
  margin: 0 0 1.25rem;
  color: inherit !important;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}

.tr-customer-notice__text {
  margin: 0 0 1.25rem;
  color: inherit !important;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.tr-customer-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.tr-customer-notice__link:hover,
.tr-customer-notice__link:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.tr-customer-notice__link-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.tr-customer-notice__link-svg {
  display: block;
  width: 1.25rem;
  height: 1.5rem;
}

@media (max-width: 47.9375rem) {
  .tr-customer-notice {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  .tr-customer-notice__icon {
    justify-self: center;
  }

  .tr-customer-notice__headline {
    text-align: center;
  }
}
