/* ========================= spots ========================== */

.spot-container {
  position: relative;
}

.spot {
  position: absolute;
  z-index: -1;
}

.spot--spot_01 {
  height: auto;
  width: 280px;
  top: -152px;
  left: 738px;
}

.spot--spot_02 {
  height: auto;
  width: 450px;
  top: 372px;
  left: -220px;
}

.spot--spot_03 {
  height: auto;
  width: 386px;
  top: 859px;
  left: 739px;
}

.spot--spot_04 {
  height: auto;
  width: 500px;
  top: 2543px;
  left: 639px;
  transform: rotate(59deg);
}

.spot--spot_05 {
  height: auto;
  width: 500px;
  top: 3192px;
  left: 953px;
  transform: rotate(124deg);
}

.spot--spot_06 {
  height: auto;
  width: 500px;
  top: 3602px;
  left: -200px;
  transform: rotate(124deg);
}

.spot--spot_07 {
  height: auto;
  width: 400px;
  top: 4202px;
  left: 850px;
  transform: rotate(342deg);
}

@media (max-width: 600px) {

  .spot--spot_01 {
    height: auto;
    width: 300px;
    top: -159px;
    left: -166px;
  }

  .spot--spot_02 {
    height: auto;
    width: 300px;
    top: 554px;
    left: 163px;
  }

  .spot--spot_03 {
    height: auto;
    width: 354px;
    top: 1222px;
    left: -132px;
  }

  .spot--spot_04 {
    height: auto;
    width: 300px;
    top: 3543px;
    left: -76px;
    transform: rotate(59deg);
  }

  .spot--spot_05 {
    height: auto;
    width: 200px;
    top: 3846px;
    left: 242px;
    transform: rotate(59deg);
  }

  .spot--spot_06 {
    height: auto;
    width: 249px;
    top: 4106px;
    left: -118px;
    transform: rotate(59deg);
  }

  .spot--spot_07 {
    height: auto;
    width: 249px;
    top: 4106px;
    left: 1118px;
    transform: rotate(59deg);
  }
}


/* ========================= Common ========================== */

.dyslexia-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  gap: 80px;
  align-items: center;
}

.dyslexia-block--reverted {
  grid-template-areas: "image text";
}

@media (max-width: 600px) {

  .dyslexia-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
    gap: 16px;
  }

  .dyslexia-block--reverted {
    grid-template-areas:
      "image"
      "text";
  }
}

.dyslexia-block__texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-area: text;
}

.dyslexia-block__image {
  grid-area: image;
}

.RB-trusted-screener,
.RB-ensures,
.How-ReadBasix-identifies,
.How-ReadBasix-identifies__block {
  margin: 120px 0 0;
}

@media (max-width: 600px) {

  .dyslexia-block__texts {
    gap: 20px;
  }

  .RB-trusted-screener,
  .RB-ensures,
  .How-ReadBasix-identifies,
  .How-ReadBasix-identifies__block {
    margin: 80px 0 0;
  }
}

/* ========================= what-is-dyslexia ========================== */

.what-is-dyslexia {
  display: grid;
  margin: 120px 0 0;
  gap: 80px;
  justify-content: center;
}

.what-is-dyslexia__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 72px;
  justify-content: center;
}

.what-is-dyslexia__assertion {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 768px) {

  .what-is-dyslexia {
    margin: 80px 0 0;
    gap: 24px;
  }

  .what-is-dyslexia__title {
    margin: 0 auto;
    text-align: center;
  }

  .what-is-dyslexia__assertion {
    display: flex;
    gap: 16px;
    border-radius: 12px;
    border: 1px solid var(--capti-color--outline-medium);
    padding: 12px;
  }

  .what-is-dyslexia__assertion .body-l {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .what-is-dyslexia__assertion .square-icon.square-icon--56 {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
  }

  .what-is-dyslexia__content {
    grid-template-columns: 1fr;
    column-gap: 16px;
    row-gap: 16px;
  }
}


/* ========================= Dyslexia-vs-general ========================== */

.Dyslexia-vs-general {
  display: grid;
  margin: 120px 0 0;
  gap: 40px;
  justify-content: center;
}

.Dyslexia-vs-general__title {
  text-align: center;
}

.Dyslexia-vs-general__table {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 736px;
  align-items: center;
}

.Dyslexia-vs-general__table-row {
  display: flex;
}

.Dyslexia-vs-general__table-cell {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--capti-color--outline-medium);
}

.Dyslexia-vs-general__table-cell--header {
  min-height: 50px;
  justify-content: center;
}

.Dyslexia-vs-general__table-cell--blue {
  background-color: var(--capti-color--text-color);
  color: var(--capti-color--text-on-color);
  border-radius: 8px 0 0 0;
  text-align: center;
}

.Dyslexia-vs-general__table-cell--green {
  background-color: var(--capti-color--brand-green);
  color: var(--capti-color--text-on-color);
  border-radius: 0 8px 0 0;
  text-align: center;
}

@media (max-width: 600px) {

  .Dyslexia-vs-general {
    margin: 80px 0 0;
  }

  .Dyslexia-vs-general__table-cell {
    padding: 12px;
  }
}


/* ========================= Why-screening ========================== */

.Why-screening {
  display: grid;
  grid-template-columns: 1fr;
  margin: 120px 0 0;
  gap: 80px;
  justify-content: center;
}

.Why-screening__title {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.Why-screening__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
}

.Why-screening__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  gap: 80px;
  align-items: center;
}

@media (max-width: 600px) {

  .Why-screening {
    gap: 40px;
  }

  .Why-screening__block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image";
  }
}

.Why-screening__texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-area: text;
}

.Why-screening__block--reverted {
  grid-template-areas: "image text";
}

.Why-screening__texts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.Why-screening__image {
  grid-area: "image";
}



/* ========================= section-description-container--dyslexia ========================== */

@media (max-width: 600px) {

  .section-description-container--dyslexia {
    padding: 32px 16px;
  }
}


/* ========================= How-ReadBasix-identifies ========================== */

.How-ReadBasix-identifies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  justify-content: center;
}

.How-ReadBasix-identifies__title-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.How-ReadBasix-identifies__benefit-cards {
  display: flex;
  gap: 40px;
}

.How-ReadBasix-identifies__benefit-cards .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.How-ReadBasix-identifies__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
  margin-top: 120px;
}

@media (max-width: 600px) {

  .How-ReadBasix-identifies__title-block {
    text-align: center;
  }

  .How-ReadBasix-identifies__benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .How-ReadBasix-identifies__benefit-cards .benefit-card {
    gap: 12px;
  }

  .How-ReadBasix-identifies__blocks {
    margin-top: 40px;
    gap: 80px;
  }
}


/* ========================= Key dyslexia risk indicators in ReadBasix results: ========================== */


.How-ReadBasix-identifies__texts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.How-ReadBasix-identifies__texts-list-bullet-point {
  display: flex;
  gap: 16px;
}

@media (max-width: 600px) {

  .How-ReadBasix-identifies__texts-list {
    gap: 20px;
  }
}


/* ========================= ReadBasix is a trusted screener ========================== */

.RB-trusted-screener__texts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.RB-trusted-screener__bullet-point {
  display: flex;
  gap: 16px;
}

@media (max-width: 600px) {

  .RB-trusted-screener__texts-list {
    gap: 20px;
  }
}


/* ========================= How ReadBasix ensures accurate screening ========================== */

.RB-ensures__texts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.RB-ensures__bullet-point {
  display: flex;
  align-items: center;
  gap: 16px;
}
