/* breaking news */
.breaking {
  padding: 3rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.breaking-card {
  background: linear-gradient(135deg, var(--color-card), var(--color-white));
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card-strong);
  border: 1px solid #f0e4d8;
}

.breaking-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.breaking-vid {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-md);
  margin: 0.8rem auto 1.2rem;
  display: block;
  box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
}

.breaking-msg {
  font-size: 1.1rem;
  color: var(--color-title);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.breaking-date {
  font-size: 0.8rem;
  color: var(--color-footer);
  margin-top: 0.8rem;
}

.breaking-archive-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--color-label);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  transition: all 0.2s;
}

.breaking-archive-link:hover {
  background: #f0e4d8;
  color: var(--color-title);
  border-color: #d5c8ba;
}

/* face cycle */
.face-cycle {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: var(--color-face-bg);
}

.face-cycle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.face-cycle img.active {
  opacity: 1;
}

.face-cycle .dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.face-cycle .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255 255 255 / 40%);
  cursor: pointer;
  transition: background 0.3s;
}

.face-cycle .dots span.live {
  background: var(--color-white);
}

/* instagram */
.ig-section {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  max-width: 400px;
  margin: 0 auto;
}

.ig-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.ig-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ig-handle {
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.ig-handle a {
  color: var(--color-accent);
  text-decoration: none;
}

.ig-handle a:hover {
  text-decoration: underline;
}

.ig-note {
  font-size: 0.75rem;
  color: var(--color-footer);
  margin-top: 0.5rem;
}
