.checkBox {
  background: var(--colorBase);
  box-sizing: border-box;
  margin-top: 40px;
  padding: 40px;
}

.checkBox__header {
  display: grid;
  gap: clamp(26px, 2.8vw, 40px);
  grid-template-columns: 84px auto;
}

.checkBox__header img {
  max-width: 72px;
}

.checkBox__heading {
  align-self: center;
  border-bottom: 1px solid #e9e8e5;
  font-size: var(--fontMax32Min26);
  font-weight: 700;
  height: fit-content;
  padding-bottom: 8px;
}

.checkBox__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.checkBox__subheading,
.culture__subheading {
  background: linear-gradient(0deg, rgba(255,217,143,1) 0%, rgba(250,194,84,0) 50%, rgba(250,194,84,0) 50%);
  border-radius: 0 0 6px 6px;
  box-sizing: border-box;
  display: inline;
  font-size: var(--fontMax18Min16);
  font-weight: 700;
  padding: 0 2px;
  width: fit-content;
}

.checkBox__subheading {
	background: transparent;
}

.checkBox__list {
  display: grid;
}

.checkBox__list--withGap {
  gap: 16px;
}

.checkBox__booksIcon {
  bottom: -2%;
  position: absolute;
  right: -2%;
  width: clamp(140px, 14vw, 200px);
  z-index: -1;
}

.checkBox__content mark {
  background: linear-gradient(0deg, rgba(255,217,143,1) 0%, rgba(250,194,84,0) 40%, rgba(250,194,84,0) 40%);
}

.checkBox__starIcon {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 14vw, 200px);
  z-index: -1;
}

.checkBox__textGroup {
  display: grid;
  gap: 16px;
}

.checkBox__textGroup p .has-underline {
	background: linear-gradient(0deg, rgba(255, 217, 143, 1) 0%, rgba(250, 194, 84, 0) 50%, rgba(250, 194, 84, 0) 50%);
    display: inline;
	font-weight: 700;
}

.checkBox__dotHeading .dot {
  background: var(--colorMain);
  border-radius: 50%;
  height: 10px;
  position: relative;
  top: 9px;
  width: 10px;
}

.checkBox__dotHeading .has-underline {
	background: linear-gradient(0deg, rgba(255, 217, 143, 1) 0%, rgba(250, 194, 84, 0) 50%, rgba(250, 194, 84, 0) 50%);
    display: inline;
	width: fit-content;
}

.checkBox__dotHeading {
  display: grid;
  font-weight: 700;
  gap: 14px;
  grid-template-columns: 10px auto;
}

@media screen and (max-width: 767px) {
  .checkBox {
    padding: 40px 20px;
  }
  .checkBox__heading {
    font-size: var(--fontMax24Min18);
  }
  .checkBox__header {
    grid-template-columns: 64px auto;
  }
  .checkBox__header img {
    max-width: 64px;
  }
}
