```css
/* ==========================================
   HIDE TRIBE PAGE TITLE AREA
========================================== */

.at-pageheader,
.at-pageheader__title {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.at-pagewrapper,
.at-page,
.at-page__content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* ==========================================
   BRADLEY VINSON CUSTOM PAGE SYSTEM
========================================== */

.bv-page {
    --bv-primary: #1d2b36;
    --bv-workshop: #DEB850;
    --bv-accent: #4fa3d9;
    --bv-soft: #ffffff;
    --bv-other: #f4f8fb;
    --bv-card: #ffffff;
    --bv-border: rgba(29,43,54,.12);
    --bv-shadow: 0 20px 50px rgba(29,43,54,.10);
    --bv-radius: 24px;
}


/* ==========================================
   GLOBAL
========================================== */

.bv-page * {
    box-sizing: border-box;
}

.bv-page a {
    text-decoration: none;
}

.bv-page .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================
   SECTIONS
========================================== */

.bv-page .section {
    padding: 78px 0;
    background: var(--bv-other);

}

.bv-page .section.alt {
    background: var(--bv-soft);
}

.bv-page .section-head {
    max-width: 800px;
    margin-bottom: 34px;
}

.bv-page .hero {
    padding: 78px 0 64px;
    background: var(--bv-soft);
}


/* ==========================================
   GRID SYSTEM
========================================== */

.bv-page .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}

.bv-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.bv-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.bv-page .grid-4 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}


/* ==========================================
   CARDS
========================================== */

.bv-page .hero-card,
.bv-page .feature-card,
.bv-page .offer-card,
.bv-page .topic-card,
.bv-page .story-card,
.bv-page .quote-card,
.bv-page .product-card,
.bv-page .category-card,
.bv-page .guide-card,
.bv-page .detail-card,
.bv-page .callout-card,
.bv-page .video-card,
.bv-page .form-placeholder {
    background: var(--bv-card);
    border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
}

.bv-page .hero-card {
    padding: 34px;
}

.bv-page .feature-card,
.bv-page .offer-card,
.bv-page .topic-card,
.bv-page .story-card,
.bv-page .quote-card,
.bv-page .product-card,
.bv-page .category-card,
.bv-page .guide-card,
.bv-page .detail-card,
.bv-page .callout-card {
    padding: 28px;
}


/* ==========================================
   LABELS
========================================== */

.bv-page .eyebrow,
.bv-page .kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .74rem;
    font-weight: 800;
    color: var(--bv-accent);
    margin-bottom: 12px;
}

.bv-page .number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bv-soft);
    color: var(--bv-primary);
    font-weight: 800;
    margin-bottom: 14px;
}


/* ==========================================
   BUTTONS
========================================== */

.bv-page .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.bv-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--bv-primary);
    color: #fff !important;
    border: 2px solid var(--bv-primary);
    font-weight: 700;
    transition: .2s ease;
}

.bv-page .btn:hover {
    transform: translateY(-2px);
}

.bv-page .btn.secondary {
    background: transparent;
    color: var(--bv-primary) !important;
}

.bv-page .btn.gold {
    background: var(--bv-accent);
    border-color: var(--bv-accent);
}


/* ==========================================
   LISTS
========================================== */

.bv-page .plain-list,
.bv-page .hero-card ul {
    padding-left: 22px;
    margin-top: 15px;
}

.bv-page .plain-list li,
.bv-page .hero-card li {
    margin: 10px 0;
}


/* ==========================================
   MEDIA PLACEHOLDERS
========================================== */

.bv-page .image-placeholder,
.bv-page .video-placeholder,
.bv-page .cover-placeholder {
    background: linear-gradient(
        135deg,
        rgba(29,43,54,.08),
        rgba(79,163,217,.15)
    );
    border-radius: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.bv-page .image-placeholder {
    min-height: 460px;
}

.bv-page .video-card {
    padding: 18px;
}

.bv-page .video-placeholder {
    aspect-ratio: 16 / 9;
}

.bv-page .cover-placeholder {
    aspect-ratio: 4 / 5;
    margin-bottom: 20px;
}


/* ==========================================
   CALLOUTS
========================================== */

.bv-page .callout {
    background: var(--bv-primary);
    color: white;
    border-radius: 32px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.bv-page .callout h1,
.bv-page .callout h2,
.bv-page .callout h3,
.bv-page .callout p {
    color: white;
}

.bv-page .notice,
.bv-page .note-box {
    border-left: 6px solid var(--bv-accent);
    background: rgba(79,163,217,.10);
    border-radius: 18px;
    padding: 18px 22px;
}


/* ==========================================
   PRICE BOX
========================================== */

.bv-page .price-box {
    background: var(--bv-workshop);
    color: white;
    border-radius: 28px;
    padding: 32px;
}

.bv-page .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bv-accent);
}


/* ==========================================
   FORM PLACEHOLDER
========================================== */

.bv-page .form-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 36px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .bv-page .hero-grid,
    .bv-page .grid-2,
    .bv-page .grid-3,
    .bv-page .grid-4,
    .bv-page .callout {
        grid-template-columns: 1fr;
    }

    .bv-page .hero {
        padding: 58px 0;
    }

    .bv-page .section {
        padding: 58px 0;
    }
}

.bv-page p:empty,
.bv-page p:has(br) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

/* Hide Tribe/Page title area */
.at-pageheader,
.at-pageheader *,
.entry-header,
.entry-header *,
.page-header,
.page-header *,
.entry-title,
.page-title,
.post-4165 > h1,
.post-4165 h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.bv-page .mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bv-page .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 163, 217, 0.14);
  color: var(--bv-primary);
}

.rounded-image {
    border-radius: var(--bv-radius);
    overflow: hidden;
}

.rounded-image-shadow {
    border-radius: var(--bv-radius);
    overflow: hidden;
    box-shadow: var(--bv-shadow);
}

/* Bradley Vinson page spacing fix */

.bv-page section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.bv-page .hero {
  padding-top: 60px !important;
  padding-bottom: 50px !important;
}

.bv-page .section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.bv-page .section.alt {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.bv-page .container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.bv-page .section-head {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}

.bv-page h1,
.bv-page h2,
.bv-page h3,
.bv-page p {
  margin-top: 0 !important;
}

.bv-page p:last-child {
  margin-bottom: 0 !important;
}

.bv-page section + section {
  margin-top: 0 !important;
}

```
