/* site-additions.css — overlay on top of style.css for new features */

/* Sticky mobile "Call Paul" floating button */
.sticky-call {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--gold, #B58A3B);
  color: var(--navy, #0B2545) !important;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.sticky-call:hover { transform: translateY(-2px); }
@media (min-width: 900px) {
  .sticky-call { display: none; }
}

/* Active nav-link highlight */
.nav-links a.active {
  color: var(--gold, #B58A3B);
  font-weight: 600;
}

/* IRS-citation callout block on tax-benefits */
.irs-block {
  background: var(--paper, #F3F0E8);
  border-left: 4px solid var(--gold, #B58A3B);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.irs-block strong { color: var(--navy, #0B2545); }

/* FAQ rich result spacing */
.faq details { margin-bottom: 0.8rem; }

/* Responsive 16:9 YouTube embed */
.video-wrap {
  max-width: 820px;
  margin: 1.5rem auto;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted, #5C6470);
  margin-top: 0.6rem;
}

/* Inline video link badge */
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper, #F3F0E8);
  border-left: 3px solid var(--gold, #B58A3B);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--navy, #0B2545);
  font-weight: 500;
  margin: 0.8rem 0;
}
.video-link:hover { background: #e8e4d8; }
.video-link::before { content: "▶"; color: var(--gold, #B58A3B); }
