.itr-adv-disclosure {
  font-size: 13px;
  color: #777;
  border-left: 3px solid #6faf73;
  padding: 6px 12px;
  margin: 0 0 25px;
  background: #f7f7f7;
}
.itr-adv-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #f4f9f4;
  border: 1px solid #d9e9d9;
  border-radius: 6px;
  padding: 24px;
  margin: 30px 0;
  clear: both;
}
.itr-adv-box-image {
  flex: 0 0 38%;
  max-width: 38%;
  display: block;
}
.itr-adv-box-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.itr-adv-box-body {
  flex: 1 1 auto;
  min-width: 0;
}
.itr-adv-box-heading {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}
.itr-adv-box-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.itr-adv-box-text p:last-child {
  margin-bottom: 0;
}
.itr-adv-button {
  display: inline-block;
  background: #6faf73;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.itr-adv-button:hover {
  background: #5a9a5e;
  color: #fff;
}
.itr-adv-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.itr-adv-sticky.is-visible {
  transform: translateY(0);
}
.itr-adv-sticky.is-closed {
  display: none;
}
.itr-adv-sticky-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 48px 10px 16px;
  position: relative;
}
.itr-adv-sticky-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 0 48px;
}
.itr-adv-sticky-text {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}
.itr-adv-sticky-button {
  flex: 0 0 auto;
  padding: 10px 20px;
}
.itr-adv-sticky-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 6px;
}
body.itr-advertorial.itr-adv-sticky-open {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .itr-adv-box {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 16px;
  }
  .itr-adv-box-image {
    flex-basis: auto;
    max-width: 100%;
  }
  .itr-adv-box-heading {
    font-size: 19px;
  }
  .itr-adv-sticky-text {
    font-size: 13px;
  }
  .itr-adv-sticky-thumb {
    display: none;
  }
  .itr-adv-sticky-inner {
    padding: 8px 40px 8px 12px;
    gap: 10px;
  }
  .itr-adv-sticky-button {
    padding: 9px 14px;
    font-size: 12px;
  }
}
