.presentation-announce {
  width: 100%;
  margin: 20px 0;
  padding: 14px 18px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.65;
  background: #fafafa;
  color: #222;
}

.presentation-announce__text {
  display: inline;
  margin: 0;
}

.presentation-announce__text strong {
  font-weight: 700;
}

.presentation-announce__link {
  display: inline;
  margin-top: 0;
  color: #ed6b30;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.presentation-announce__link:hover,
.presentation-announce__link:focus {
  color: #96d129;
}

.presentation-announce--light-border {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
}

.presentation-announce--light-shadow {
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.presentation-announce--accent-frame {
  border: 1px solid #ffbc03;
  border-radius: 6px;
  background: #fffdf5;
  box-shadow: none;
}

.presentation-announce--left-border {
  border: 1px solid #e7e7e7;
  border-left: 4px solid #64c6f3;
  border-radius: 4px;
  background: #fafafa;
}

@media (max-width: 767px) {
  .presentation-announce {
    margin: 16px 0;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.6;
  }
}