.b-announce {
  background: #fff;
}

.b-announce__head {
  max-width: 800px;
}

.ba-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}

.ba-topic-info {
  color: #575D68;
}

.ba-topic-info__title {
  color: #101828;
}

.ba-topic-info__props {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.b-announce__wrap {
  display: grid;
  align-items: flex-start;
  gap: 20px;
}

.b-announce__topics {
  display: grid;
  gap: 16px;
}

.ba-weekly__img-wrap {
  display: flex;
  position: relative;
}

.ba-weekly__lbl {
  background: #70f;
  border-radius: 12px;
  color: #fff;
  padding: 8px 32px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.ba-weekly__img {
  width: 100%;
  border-radius: 18px;
}

@media (hover: hover) {
  .ba-card .ba-card__link {
    transition: color .3s ease;
  }
  .ba-card:hover .ba-card__link {
    color: #d33706;
  }
}

@media (max-width: 767px) {
  .b-announce__bg {
    border-radius: 24px 24px 0 0;
  }
  .ba-card {
    border-radius: 20px;
    padding: 16px;
  }
  .ba-weekly__img {
    border-radius: 16px;
  }
  .ba-weekly__lbl {
    border-radius: 8px;
    padding: 4px 16px;
  }
  .b-announce__wrap,
  .b-announce__topics {
    gap: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .ba-weekly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .b-announce__wrap {
    gap: 16px;
  }
  .ba-weekly .ba-topic-info {
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .b-announce__wrap {
    grid-template-columns: 670px auto;
  }
  .b-announce__topics {
    min-height: 100%;
  }
  .ba-topic {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
}
