.hero-highlight {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 991.98px) {
  .hero-highlight {
    padding-bottom: 48px !important;
    transition: none;
  }
}
.hero-highlight__wrapper {
  position: relative;
}
@media (max-width: 991.98px) {
  .hero-highlight__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.hero-highlight__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: absolute;
  z-index: 2;
  max-width: 680px;
  padding: 40px;
  border-radius: 16px;
  background: #ffffff;
  top: var(--content-top);
  left: 0;
  border: 1px solid #a2afba;
}
.hero-highlight__content .hero-highlight__header h2 {
  max-width: 700px;
}
@media (max-width: 991.98px) {
  .hero-highlight__content {
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    border: none;
  }
}
.hero-highlight .body-base a {
  color: #142532;
  font-weight: 700;
}
.hero-highlight__read-more {
  width: 100%;
}
.hero-highlight__read-more-content {
  margin-top: 16px;
}
.hero-highlight__read-more-btn {
  margin-top: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #765b00;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 991.98px) {
  .hero-highlight__read-more-btn {
    margin-top: 0;
  }
}
.hero-highlight__read-more-btn:hover {
  opacity: 0.8;
}
.hero-highlight__read-more-btn .chevron-down {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M3.33268 6.5L7.99935 11.16667L12.666 6.5' stroke='%23765B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.hero-highlight__read-more-btn .chevron-up {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M12.666 11.5L7.99935 6.83333L3.33268 11.5' stroke='%23765B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.hero-highlight__image {
  margin-left: auto;
  max-width: 850px;
  height: 504px;
}
.hero-highlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 16px 200px 6px 16px;
}
@media (max-width: 991.98px) {
  .hero-highlight__image img {
    object-position: right;
  }
}
@media (max-width: 767.98px) {
  .hero-highlight__image img {
    border-radius: 16px 140px 6px 16px;
  }
}
@media (max-width: 991.98px) {
  .hero-highlight__image {
    max-width: 100%;
    margin: 0;
    height: 400px;
  }
}