/* ========================= Common ============================ */
.h1,
.Materials,
.Research-papers,
.Technical-reports,
.Reports-on-administration {
  display: grid;
  margin: 80px 0px 0px;
  gap: 32px;
}

@media (max-width: 768px) {
  .h1 {
    margin: 40px 0px 0px;
  }
}

#research-papers,
#technical-reports,
#reports-on-administration {
  scroll-margin-top: 140px;
}


/* ========================= Materials ============================ */

.Materials {
  display: flex;
  gap: 32px;
}

.explore-more-card {
  flex: 1;
  display: flex;
  gap: 80px;
  padding: 68px 64px;
  border-radius: 24px;
  background:
    url('/capti-site/themes/capti/new/images/3d/opening_book.png') no-repeat right 38px top 130px,
    linear-gradient(320deg, rgba(187, 107, 217, 0.20) 0%, rgba(11, 115, 235, 0.20) 100%),
    var(--capti-color--white, #FFF);
  background-size: auto, cover;
}

@media (max-width: 768px) {

  .Materials {
    flex-direction: column;
    gap: 16px;
  }

  .explore-more-card {
    padding: 32px 32px 40px;
    width: unset;
    background:
      url('/capti-site/themes/capti/new/images/3d/opening_book.png') no-repeat right 28px top 108px,
      linear-gradient(320deg, rgba(187, 107, 217, 0.20) 0%, rgba(11, 115, 235, 0.20) 100%),
      var(--capti-color--white, #FFF);
    background-size: 162px auto, cover;
  }
}

.explore-more-card__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 312px;
}

.explore-more-card__content button {
  width: fit-content;
}

/* ===================== Technical reports ===================== */

/* ========================= report ============================ */

.reports__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 928px;
}

.report {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 32px 24px 32px 32px;
  border-radius: 24px;
  border: 1px solid var(--capti-color--outline-medium);
}

.report__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
}

.report__chevron {
  position: absolute;
  top: -12px;
  left: -46px;
  padding: 6px 12px;
  color: var(--capti-color--white);
  background-color: var(--capti-color--brand-violet);
  border-radius: 24px;
}

.report__header-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report__header-row {
  display: flex;
  gap: 12px;
}

.report__header p {
  color: var(--capti-color--text-secondary);
}

.report__question {
  flex-grow: 1;
}

.report__content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  transition: all 0.3s ease;
}

.report__content-wrap.open {
  grid-template-rows: 1fr;
  margin-top: 24px;
}

.report__content {
  overflow: hidden;
}

.report__content p {
  margin: 0;
}

.report__icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.report__icon.open {
  transform: rotate(180deg);
}

.report__path {
  opacity: 0;
  transition: opacity 0.3s ease;
  fill: #0B73EB;
  transition: fill 0.3s ease;
}

.report__path--plus {
  opacity: 1;
}

.report__icon.open .report__path--plus {
  opacity: 0;
}

.report__icon.open .report__path--minus {
  opacity: 1;
}

.report__svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.report__svg svg {
  width: 100%;
  height: 100%;
}

.report__svg svg path {
  fill: var(--capti-color--white);
}

.button--full-text {
  margin-top: 24px;
}


/* ========================= Details ============================ */

.Details {
  margin: 80px 0;
}
