@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap");
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
}


.container {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}

section {
  background: rgb(192 165 204 / 14%);
  padding: 50px 0;
}

.tab__list {
  display: flex;
  margin-bottom: 24px;
}

date {
    position: absolute;
    z-index: 1;
    background: #fff;
    right: 0;
    top: 0;
    padding: 10px;
}

.tab__item {
  overflow: hidden;
  cursor: pointer;
  padding: 12px 8px;
  margin-right: 24px;
  text-shadow: 0 0 0.5px currentColor;
  letter-spacing: 1px;
  transition: 0.2s;
  font-size: 18px;
  position: relative;
  color: #8243ae;
}
.tab__item:before {
  content: "";
  position: absolute;
  top: 95%;
  left: 0;
  height: 2px;
  width: 100%;
  background: #d52282;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.tab__item.is--active {
  color: #d52282;
  position: relative;
}
.tab__item.is--active:before {
  visibility: visible;
  opacity: 1;
}
.tab__content {
  padding: 32px;
  background: #ffffff;
  border-radius: 0 10px 10px;
}
.tab__content-item {
  display: none;
}
.tab__content-item.is--active {
  display: block;
}

.tab__content-item gridset {
    display: grid;
    width: 100%;
    gap: 1rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, 32.33%);
    justify-content: center;
 /*   border: 0px solid #8243ae6b;
    background: #8243ae17;*/
}  
.tab__content-item gridset set {     width: 100%;    position: relative;} 
.tab__content-item cont {
       position: absolute;
    z-index: 1;
    background: #fff;
    right: 0;
    bottom: 0;
    padding: 10px;
    font-size: 17px;
    font-weight: 400;
    color: #682a77;
}

.tab__content-title {
  padding: 24px 24px 24px 0;
}

.tab .tab .tab__item {
  font-size: 16px;
}
.tab .tab .tab__content {
  padding: 0;
}