/* =========================================================
   WATCH ONLINE
   ========================================================= */

.watch-title {
  margin: 30px 0 12px;

  color: var(--text);

  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}


/* =========================================================
   WATCH BUTTON
   ========================================================= */

.watch-online-btn {
  width: 100%;
  min-height: 50px;

  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: 0;
  border-radius: 11px;

  background: var(--accent);
  color: #151208;

  text-decoration: none;

  font-size: 14px;
  font-weight: 750;

  box-shadow:
    0 8px 25px rgba(255, 201, 74, .12);

  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.watch-online-btn::before {
  content: "▶";

  font-size: 12px;
}

.watch-online-btn:hover {
  background: var(--accent-hover);

  box-shadow:
    0 10px 30px rgba(255, 201, 74, .18);

  transform: translateY(-1px);
}

.watch-online-btn:active {
  transform: translateY(0);
}


/* =========================================================
   GENERIC SECTION
   ========================================================= */

.section {
  margin-top: 32px;
}

.section h2 {
  margin: 0 0 10px;

  color: var(--text);

  font-size: 19px;
}

.section p {
  margin: 0;

  color: var(--muted);

  line-height: 1.6;
}