/* Report Single Page Styles */

.report-single {
  padding: 40px 0;
  background: #ffffff;
  min-height: 100vh;
}

.report-single ul,
.report-single ol {
  padding-left: 14px;
}

.report-single__container {
  padding: 20px;
  padding-bottom: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 608px 416px;
  grid-template-areas: "title form"
    "content form";
  width: 100%;
  column-gap: 30px;
  row-gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.report-single__content {
  max-width: 608px;
  width: 100%;
  grid-area: content;
}

.report-single__title {
  margin: 0;
  grid-area: title;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

/* Content */
.report-single__content {
  padding-bottom: 40px;
}

/* Sidebar */
.report-single__sidebar {
  width: 416px;
  flex-shrink: 0;
  align-self: stretch;
  grid-area: form;
}

.report-single__form {
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  top: 120px;
}

.report-single__form ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

/* Other Reports Section */
.report-single__other-reports {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1110px;
}

.report-single__other-reports-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
}

.report-single__other-reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.report-single__no-reports {
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

/* Research Post Card Styles for Report Pages */
.research-post-card {
  overflow: hidden;
  position: relative;
  flex-shrink: 1;
  height: 300px;
  transition-behavior: allow-discrete;
  transition-property: display, opacity, transform;
  transition-duration: 0.4s;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .research-post-card:hover {
    transform: scale(1.025);
    box-shadow: 0 7px 9px 0 rgba(0, 0, 0, .15) !important;
  }

  .research-post-card:hover .research-post-card__overlay {
    background: transparent;
  }
}

@starting-style {
  .research-post-card {
    opacity: 0;
  }
}

.research-post-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.research-post-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.research-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.research-post-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 20px;
  z-index: 2;
  transition: background 0.3s ease;
}

.research-post-card__category {
  padding: 6px 12px;
  align-self: flex-start;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  opacity: 0.5;
}

.research-post-card__content {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.research-post-card__title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #FFFFFF;
}

.research-post-card__date-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
}

.research-post-card__date-icon {
  width: 11px;
}

.research-post-card__date-icon img {
  width: 100%;
  height: 100%;
}

.research-post-card__date-text {
  margin-top: 4px;
  margin-left: 5px;
  color: #FFFFFFCC;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.research-posts__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1250px) {
  .report-single__container {
    padding: 30px;
    grid-template-columns: 1fr 416px;
    max-width: unset;
  }
}

@media (max-width: 899px) {
  .report-single__container {
    padding: 60px 30px;
    grid-template-columns: 1fr;
    max-width: unset;
    grid-template-areas: 'title'
      'form'
      'content';
  }

  .report-single__content {
    max-width: unset;
  }

  .report-single__sidebar {
    margin: 0 auto;
    align-self: baseline
  }
}

@media (max-width: 768px) {
  .research-post-card:nth-child(n) {
    width: 100% !important;
    height: 250px;
  }

  .research-posts__grid {
    gap: 15px;
  }

  .research-post-card__overlay {
    padding: 15px;
  }

  .research-post-card__title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 590px) {

  .report-single__title {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
  }

  .report-single__container {
    padding-bottom: 0;
    gap: 24px;
  }

  .research-posts__grid {
    grid-template-columns: 1fr;
  }

  .report-single__sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .report-single__title {
    margin-bottom: 16px;
  }

  .report-single__header {
    padding: 20px 20px 15px;
  }

  .report-single__content {
    padding: 16px 20px 25px;
  }

  .report-single__other-reports-grid {
    grid-template-columns: 1fr;
  }
}

/* MailerLite embedded form */
.ml-form-embedWrapper {
  border-radius: 8px !important;
}

.ml-form-embedContent h4 {
  margin-bottom: 7px !important;
  font-size: 30px !important;
  line-height: 36px !important;
}

.ml-form-embedContent p,
.ml-form-embedContent ul {
  margin: 0 !important;
  font-size: 14px !important;
}

.ml-form-embedContent ul {
  margin-top: 5px !important;
  padding-inline-start: 22px !important;
}

.ml-form-embedContent ul li {
  line-height: 27px !important;
}

#mlb2-24807494.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button[type="submit"] {
  font-weight: 700 !important;
}

.ml-form-successContent h4 {
  font-size: 30px !important;
  line-height: 36px !important;
}

.ml-form-successContent p {
  font-size: 14px !important;
}

.ml-form-embedSubmit .loading .ml-form-embedSubmitLoad {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 360px) {
  .report-single__title {
    margin-bottom: 0;
  }

  .report-single__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .report-single__content {
    padding: 0 0 25px;
  }

  .ml-form-embedContent h4 {
    font-size: 24px !important;
    line-height: 28px !important;
  }

  .ml-form-embedContent ul li {
    line-height: 22px !important;
  }

  .ml-form-successContent h4 {
    font-size: 24px !important;
    line-height: 28px !important;
  }


}