/* Cartões de convite intercalados com as notícias. */
.novidade.novidade-convite {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-color: #d99b2b;
  background: linear-gradient(135deg, #102a36 0%, #1d4755 62%, #12313f 100%);
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 214, 128, .16), 0 2px 7px rgba(18, 42, 54, .25);
}

.novidade.novidade-convite::before {
  position: absolute;
  right: 10px;
  bottom: -26px;
  color: rgba(255, 255, 255, .08);
  content: '道';
  font-family: Georgia, serif;
  font-size: 108px;
  line-height: 1;
}

.novidade.novidade-convite::after {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c94639;
  box-shadow: 0 0 0 3px rgba(201, 70, 57, .18);
  content: '';
}

.novidade.novidade-convite span {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 4px;
}

.novidade.novidade-convite em {
  color: #efbd55;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
}

.novidade.novidade-convite strong { color: #fff; font-size: 17px; line-height: 1.1; }
.novidade.novidade-convite small { color: #d9e8ec; font-size: 10px; }
.novidade.novidade-convite:hover { border-color: #f0bd55; color: #fff; transform: translateY(-1px); }
