.reports-hero--section {
  width: 100%;
  max-width: 100%;
  position: relative;
  background: var(--green1);
  padding: 30px 0 50px;
}
.reports-hero--section .top--decorator {
  position: absolute;
  width: 100%;
  top: 1px;
  left: 0;
}
.reports-hero--section .bottom--decorator {
  position: absolute;
  width: 100%;
  bottom: 1px;
  left: 0;
}
.reports-hero--section .reports-hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__container {
    padding: 0 60px;
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media screen and (min-width: 1500px) {
  .reports-hero--section .reports-hero__container {
    padding: 0 30px;
  }
}
.reports-hero--section .reports-hero__content-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side {
    justify-content: center;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--logo {
  max-width: 560px;
}
.reports-hero--section .reports-hero__content-side .reports-hero--logo img {
  width: 100%;
  height: auto;
  display: block;
}
.reports-hero--section .reports-hero__content-side .reports-hero--content {
  font-family: "FactorA", sans-serif;
  color: var(--sand);
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h1, .reports-hero--section .reports-hero__content-side .reports-hero--content h2, .reports-hero--section .reports-hero__content-side .reports-hero--content h3, .reports-hero--section .reports-hero__content-side .reports-hero--content h4, .reports-hero--section .reports-hero__content-side .reports-hero--content h5, .reports-hero--section .reports-hero__content-side .reports-hero--content h6 {
  font-family: "FactorA", sans-serif;
  color: var(--sand);
  margin-bottom: 15px;
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h1 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h1 {
    font-size: 48px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h2 {
    font-size: 36px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h3 {
    font-size: 28px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h4 {
    font-size: 22px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h5 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content h5 {
    font-size: 20px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__content-side .reports-hero--content p {
    font-size: 16px;
  }
}
.reports-hero--section .reports-hero__content-side .reports-hero--content p:last-child {
  margin-bottom: 0;
}
.reports-hero--section .reports-hero__content-side .reports-hero--content p strong {
  font-weight: 700;
}
.reports-hero--section .reports-hero__content-side .reports-hero--content a {
  color: var(--sand);
  text-decoration: underline;
}
.reports-hero--section .reports-hero__content-side .reports-hero--content a:hover {
  opacity: 0.8;
}
.reports-hero--section .reports-hero__content-side .reports-hero--cta {
  margin-top: 10px;
}
.reports-hero--section .reports-hero__posts-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__posts-side {
    gap: 40px;
  }
}
.reports-hero--section .reports-hero__posts-side .reports-hero--title {
  font-size: 28px;
  font-weight: 700;
  font-family: "FactorA", sans-serif;
  color: var(--sand);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--title {
    font-size: 36px;
  }
}
.reports-hero--section .reports-hero__posts-side .reports-hero--posts {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--posts {
    gap: 30px;
  }
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post:hover {
  transform: translateX(5px);
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post:hover .post-title {
  text-decoration: underline;
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post:hover svg path:first-child {
  fill: var(--green3);
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post .post-date {
  font-size: 14px;
  font-weight: 400;
  font-family: "FactorA", sans-serif;
  color: var(--sand);
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--post .post-date {
    font-size: 15px;
  }
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sand);
  transition: transform 0.2s ease;
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper svg path:first-child {
  transition: fill 0.2s ease;
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper .post-title {
  font-size: 16px;
  font-weight: 400;
  font-family: "FactorA", sans-serif;
  color: var(--sand);
  line-height: 1.4;
  margin: 0;
  text-decoration: underline;
  transition: text-decoration 0.2s ease;
}
@media screen and (min-width: 768px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper .post-title {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .reports-hero--section .reports-hero__posts-side .reports-hero--post .post-title-wrapper .post-title {
    font-size: 18px;
  }
}
.reports-hero--section .reports-hero__posts-side .reports-hero--post:hover .post-title-wrapper svg {
  transform: translateX(3px);
}

/*# sourceMappingURL=reports-hero.css.map */
