/**
 * Notice - WPBakery Element Styles
 */

.the7child-notice-wrapper {
  margin: 24px 0;
  clear: both;
}

.the7child-notice {
  --the7child-notice-accent: #ac8834;
  --the7child-notice-accent-rgb: 172, 136, 52;
}

.the7child-notice__inner {
  position: relative;
  max-width: 1180px;
  padding: 24px 28px 22px 34px;
  border: 1px solid rgba(var(--the7child-notice-accent-rgb), 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(var(--the7child-notice-accent-rgb), 0.18), rgba(var(--the7child-notice-accent-rgb), 0.05)),
    #ffffff;
  box-shadow: 0 18px 34px rgba(31, 31, 31, 0.08);
}

.the7child-notice__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(var(--the7child-notice-accent-rgb), 0.92), var(--the7child-notice-accent));
}

.the7child-notice__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.the7child-notice__header-icon,
.the7child-notice__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--the7child-notice-accent);
  flex: 0 0 auto;
}

.the7child-notice__header-icon svg,
.the7child-notice__item-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.the7child-notice__header-icon {
  font-size: 22px;
}

.the7child-notice__title {
  margin: 0;
  color: var(--the7child-notice-accent);
  font-family: var(--font-accent, "Raleway", Helvetica, Arial, sans-serif);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.the7child-notice__items {
  display: grid;
  gap: 12px;
}

.the7child-notice__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.the7child-notice__item-icon {
  margin-top: 2px;
  font-size: 20px;
}

.the7child-notice__item-text {
  min-width: 0;
  color: #111111;
  font-size: 18px;
  line-height: 1.45;
}

.the7child-notice__item-text p {
  margin: 0;
}

.the7child-notice__item-text strong {
  font-weight: 700;
}

.the7child-notice__item-text a {
  color: var(--the7child-notice-accent);
}

@media (max-width: 767px) {
  .the7child-notice__inner {
    padding: 20px 18px 18px 24px;
  }

  .the7child-notice__header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .the7child-notice__title {
    font-size: 24px;
  }

  .the7child-notice__item {
    gap: 10px;
  }

  .the7child-notice__item-text {
    font-size: 16px;
  }
}
