﻿.all-reports-container {
  display: flex;
  padding: 80px 96px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-7xl, 64px);
  align-self: stretch;
  background: linear-gradient(
      227deg,
      rgba(255, 255, 255, 0.9) 3.24%,
      rgba(255, 255, 255, 0) 32.26%,
      rgba(255, 255, 255, 0.9) 73.7%
    ),
    url("../Images/new-main-img/section-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.all-reports-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-6xl, 48px);
  align-self: stretch;
}
.all-reports-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-6xl, 48px);
  align-self: stretch;
}
.reports-leading-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xl, 16px);
  align-self: stretch;
}
.reports-leading-text-box p:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  padding-bottom: 20px;
}
.reports-leading-text-box p:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #475467;
  font-family: "MavenPro-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.single-report-container {
  display: flex;
  padding: 0 0;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}
.report-image-wrapper {
  display: flex;
  width: 35%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.report-image-wrapper img {
  width: 100%;
  object-fit: contain;
  display: block;
  aspect-ratio: 16 / 9;
}
.report-desc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
.report-desc-wrapper p:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.report-desc-wrapper p:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #475467;
  font-family: "MavenPro-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.report-preview-cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.report-preview-cta-box a {
  position: relative;
  display: inline-flex;
  padding: 12px 18px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid #04a986;
  color: #04a986;
  font-family: "MavenPro-SemiBold";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: border 0.2s ease, border-radius 0.2s ease;
}
  .report-preview-cta-box a img {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
  }
.report-preview-cta-box a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #04a986;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.report-preview-cta-box a:hover {
  border-color: transparent;
  border-radius: 0;
}

.report-preview-cta-box a:hover::after {
  transform: scaleX(1);
}

.load-more-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.load-more-btn-box a {
  gap: 12px;
  color: #475467;
  font-family: "MavenPro-SemiBold";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media only screen and (min-width: 2560px) {
  .all-reports-container {
    padding: 3.125vw 13.125vw;
    gap: 2.5vw;
  }
  .all-reports-wrapper {
    gap: 1.875vw;
  }
  .all-reports-box {
    gap: 1.875vw;
  }
  .reports-leading-text-box {
    gap: 0.625vw;
  }
  .reports-leading-text-box p:first-child {
    font-size: 1.172vw;
    padding-bottom: 0.781vw;
  }
  .reports-leading-text-box p:nth-child(2) {
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
  .single-report-container {
    gap: 1.25vw;
  }
  .report-image-wrapper {
    gap: 0.625vw;
  }
  .report-desc-wrapper p:first-child {
    font-size: 0.938vw;
    line-height: 1.25vw;
  }
  .report-desc-wrapper p:nth-child(2) {
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
  .report-preview-cta-box a {
    padding: 0.469vw 0.703vw;
    gap: 0.234vw;
    border: 1px solid #04a986;
    font-size: 0.625vw;
    line-height: 0.938vw;
  }
  .report-preview-cta-box a img {
    width: 0.781vw;
    height: 0.781vw;
    aspect-ratio: 1/1;
  }
  .load-more-btn-box a {
    gap: 0.469vw;
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
}
@media screen and (max-width: 1280px) {
  .single-report-container {
    flex-direction: column;
  }
  .report-image-wrapper {
    width: 65%;
  }
}
@media screen and (max-width: 542px) {
  .all-reports-container {
    padding: 80px 32px;
  }
  .report-image-wrapper {
    width: 100%;
  }
}
