# Podcast guest terms,  PreVetted Podcast

Terms and conditions for guests appearing on the PreVetted Podcast.

<section class="terms-section">
  <div class="container container-narrow">
    <div class="breadcrumb">
      <a href="">PreVetted Podcast</a>
      <span>·</span>
      <span class="current">Guest terms</span>
    </div>

    <header class="terms-header">
      <div class="terms-meta">
        <span class="terms-version">v1.0</span>
        <span class="terms-dot">·</span>
        <span>Effective </span>
      </div>
      <h1 class="terms-title">
        Podcast guest <em>terms &amp; conditions</em>
      </h1>
      <p class="terms-lede">
        These terms apply to anyone appearing as a guest on the PreVetted Podcast. By submitting the guest intake form and checking the consent box, the guest agrees to the terms below.
      </p>
    </header>

    <article class="terms-doc">
      <header class="terms-doc-head">
        <span class="terms-doc-eyebrow">Article I</span>
        <h2 class="terms-doc-title">Terms of Agreement</h2>
      </header>

      <ol class="terms-clauses">
        <li>
          <p>
            The above named Guest does hereby irrevocably consent to the recording and distribution of reproduction(s) of the Guest's voice and performance as part of the media program entitled PreVetted Podcast (herein referred to as the "Program").
          </p>
        </li>

        <li>
          <p>
            In consideration of being invited to appear on the Program, Guest does hereby acknowledge that Federico Ramallo ("Podcaster") is the sole owner of all rights in and to the Program, and the recording(s) thereof, as "works made for hire" pursuant to 17 USC §101, et.seq., for all purposes; and that Podcaster has the unfettered right, among other things, to use, exploit and distribute the Program, and Guest's performance as embodied therein in any and all media or formats, throughout the world, in perpetuity. Any materials created in connection with the production and distribution of the Program ("Materials") become property of Podcaster, and Podcaster shall have the sole and exclusive right to use, exploit and distribute such Materials, throughout the world, in perpetuity.
          </p>
        </li>

        <li>
          <p>
            Nothing contained in this Podcast Guest Release shall be construed to obligate Podcaster to use or exploit any of the rights granted or acquired by Podcaster, or to make, sell, license, distribute or otherwise exploit the Program or Materials whatsoever.
          </p>
        </li>

        <li>
          <p>
            Guest understands and agrees that he/she shall receive no monetary compensation for appearances on and participation in the Program.
          </p>
        </li>

        <li>
          <p>
            Guest's name and likeness may be used in advertising and promotional material for the Program, but not as an endorsement of any product or service.
          </p>
        </li>

        <li>
          <p>
            Guest hereby releases and discharges Podcaster from any and all liability arising out of or in connection with the making, producing, reproducing, processing, exhibiting, distributing, publishing, transmitting by any means or otherwise using the above-mentioned production. By hitting submit and checking off the checkbox in the Guest intake form you agree to these terms.
          </p>
        </li>
      </ol>
    </article>

    <aside class="terms-cta">
      <div class="terms-cta-text">
        <span class="terms-cta-eyebrow">Ready when you are</span>
        <p class="terms-cta-line">Apply to come on the show.</p>
      </div>
      <a href="" class="btn-primary">Become a guest →</a>
    </aside>
  </div>
</section>

<style>
.terms-section { padding: 56px 0 96px; }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.breadcrumb a { color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rust); }
.breadcrumb span { margin: 0 10px; }
.breadcrumb .current { color: var(--rust); }

/* HEADER */
.terms-header { margin-bottom: 48px; max-width: 720px; }
.terms-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.terms-version {
  color: var(--rust);
  background: rgba(255, 84, 54, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.terms-dot { color: var(--ink-muted); opacity: 0.5; }

.terms-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.terms-title em {
  font-style: normal;
  color: var(--rust);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 84, 54, 0.18) 60%);
  padding: 0 0.05em;
}

.terms-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}

/* DOCUMENT */
.terms-doc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.terms-doc::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rust) 0%, transparent 80%);
}
.terms-doc-head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.terms-doc-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
.terms-doc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.terms-clauses {
  list-style: none;
  counter-reset: clause;
  padding: 0;
  margin: 0;
}
.terms-clauses li {
  counter-increment: clause;
  position: relative;
  padding: 24px 0 24px 56px;
  border-top: 1px solid var(--line-soft);
}
.terms-clauses li:first-child { border-top: none; padding-top: 8px; }
.terms-clauses li::before {
  content: counter(clause, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--rust);
  width: 36px;
}
.terms-clauses li:first-child::before { top: 12px; }
.terms-clauses p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.terms-clauses p strong { color: var(--ink); font-weight: 600; }
.terms-clauses p a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 84, 54, 0.45);
  padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.terms-clauses p a:hover { color: var(--rust); border-bottom-color: var(--rust); }

/* CTA */
.terms-cta {
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.terms-cta::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 84, 54, 0.08), transparent 70%);
  pointer-events: none;
}
.terms-cta-text { position: relative; z-index: 1; }
.terms-cta-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
.terms-cta-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.terms-cta .btn-primary { position: relative; z-index: 1; }

@media (max-width: 700px) {
  .terms-doc { padding: 32px 24px; }
  .terms-clauses li { padding-left: 44px; }
  .terms-cta { padding: 24px; }
}
</style>
