/* ═══════════════════════════════════════════════════════
   Big Exit Insiders — Newsletter Brand Overrides
   Pure View Group LLC
   ═══════════════════════════════════════════════════════ */

/* ── Brand Variables ─────────────────────────────────── */
:root {
  --pvg-charcoal: #3D3A3F;
  --pvg-gray: #6E6B6F;
  --pvg-light-gray: #D9D9D9;
  --pvg-off-white: #F7F7F7;
  --pvg-white: #FFFFFF;
  --pvg-teal: #48A38B;
  --pvg-teal-hover: #3B8A75;
  --pvg-teal-light: rgba(72, 163, 139, 0.08);
  --pvg-gold: #C49A3B;
}

/* ── Newsletter Hero — Value Prop Section ────────────── */
.newsletter-hero {
  background: var(--pvg-white) !important;
}

.newsletter-hero .section__overlay {
  background: transparent !important;
}

.newsletter-hero__container {
  max-width: 780px;
  margin: 0 auto;
}

.newsletter-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pvg-teal);
  margin-bottom: 12px;
}

.newsletter-hero__title h3,
.newsletter-hero__title h2 {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.5px;
}

.newsletter-hero__description h6,
.newsletter-hero__description p {
  font-size: 18px !important;
  color: var(--pvg-gray) !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  max-width: 620px;
  margin: 0 auto;
}

/* Credibility stats bar */
.newsletter-hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px auto 8px;
  padding: 16px 0;
  border-top: 1px solid var(--pvg-light-gray);
  border-bottom: 1px solid var(--pvg-light-gray);
  max-width: 520px;
}

.newsletter-hero__stat {
  text-align: center;
}

.newsletter-hero__stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--pvg-charcoal);
  line-height: 1.2;
}

.newsletter-hero__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--pvg-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Transformation triad */
.newsletter-hero__triad {
  text-align: center;
  margin: 20px auto 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pvg-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Form styling in hero */
.newsletter-hero .newsletter-form {
  margin-top: 20px;
}

.newsletter-hero .newsletter-form .fields-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-hero .newsletter-form .form-control {
  border: 1.5px solid var(--pvg-light-gray) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  color: var(--pvg-charcoal) !important;
  background: var(--pvg-white) !important;
  transition: border-color 0.2s ease;
  min-width: 280px;
}

.newsletter-hero .newsletter-form .form-control:focus {
  border-color: var(--pvg-teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--pvg-teal-light) !important;
}

.newsletter-hero .newsletter-form .form-btn {
  background: var(--pvg-teal) !important;
  color: var(--pvg-white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.newsletter-hero .newsletter-form .form-btn:hover {
  background: var(--pvg-teal-hover) !important;
  transform: translateY(-1px);
}

.newsletter-hero__privacy {
  text-align: center;
  font-size: 12px;
  color: var(--pvg-gray);
  margin-top: 10px;
  opacity: 0.7;
}

/* ── Newsletter Listings — Issue Cards ───────────────── */
.newsletter-listings {
  background: var(--pvg-white) !important;
}

.newsletter-listing {
  padding: 28px 0;
  border-bottom: 1px solid var(--pvg-light-gray);
  transition: background 0.15s ease;
}

.newsletter-listing:first-child {
  padding-top: 0;
}

.newsletter-listing:hover {
  background: var(--pvg-off-white);
}

.newsletter-listing__media img {
  border-radius: 8px !important;
  transition: transform 0.2s ease;
}

.newsletter-listing:hover .newsletter-listing__media img {
  transform: scale(1.02);
}

.newsletter-listing__title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.newsletter-listing__title:hover {
  color: var(--pvg-teal) !important;
}

.newsletter-listing__content {
  font-size: 15px !important;
  color: var(--pvg-gray) !important;
  line-height: 1.6 !important;
  margin-top: 6px;
}

.newsletter-listing__meta {
  font-size: 13px !important;
  color: var(--pvg-gray) !important;
  opacity: 0.7;
  margin-top: 8px;
  display: block;
}

.newsletter-listing__tags .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pvg-teal);
  background: var(--pvg-teal-light);
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 6px;
  margin-top: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.newsletter-listing__tags .tag:hover {
  background: rgba(72, 163, 139, 0.15);
}

/* Grid layout improvements */
.newsletter-listings__content--grid-2 .newsletter-listing,
.newsletter-listings__content--grid-3 .newsletter-listing {
  background: var(--pvg-white);
  border: 1px solid var(--pvg-light-gray);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsletter-listings__content--grid-2 .newsletter-listing:hover,
.newsletter-listings__content--grid-3 .newsletter-listing:hover {
  box-shadow: 0 4px 20px rgba(61, 58, 63, 0.08);
  transform: translateY(-2px);
}

.newsletter-listings__content--grid-2 .newsletter-listing__data,
.newsletter-listings__content--grid-3 .newsletter-listing__data {
  padding: 16px 20px 20px;
}

/* ── Content Pillars Section ─────────────────────────── */
.newsletter-pillars {
  background: var(--pvg-off-white);
  padding: 60px 0;
  text-align: center;
}

.newsletter-pillars__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pvg-teal);
  margin-bottom: 10px;
}

.newsletter-pillars__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pvg-charcoal);
  margin-bottom: 40px;
  line-height: 1.25;
}

.newsletter-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .newsletter-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .newsletter-pillars__grid {
    grid-template-columns: 1fr;
  }
}

.newsletter-pillar-card {
  background: var(--pvg-white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--pvg-light-gray);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsletter-pillar-card:hover {
  box-shadow: 0 4px 16px rgba(61, 58, 63, 0.08);
  transform: translateY(-2px);
}

.newsletter-pillar-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.newsletter-pillar-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pvg-charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.newsletter-pillar-card__desc {
  font-size: 13px;
  color: var(--pvg-gray);
  line-height: 1.5;
}

/* ── Masterclass CTA Section ─────────────────────────── */
.newsletter-masterclass-cta {
  background: var(--pvg-charcoal);
  padding: 52px 20px;
  text-align: center;
}

.newsletter-masterclass-cta__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pvg-teal);
  margin-bottom: 12px;
}

.newsletter-masterclass-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pvg-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.newsletter-masterclass-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.newsletter-masterclass-cta__btn {
  display: inline-block;
  background: var(--pvg-teal);
  color: var(--pvg-white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.newsletter-masterclass-cta__btn:hover {
  background: var(--pvg-teal-hover);
  transform: translateY(-1px);
  color: var(--pvg-white);
  text-decoration: none;
}

/* ── Newsletter Post Body — Reading Experience ───────── */
.newsletter-post-body {
  background: var(--pvg-white) !important;
}

.newsletter-post-body__title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.3px;
}

.newsletter-post-body__authors {
  font-size: 15px !important;
  color: var(--pvg-gray) !important;
  margin-top: 10px;
}

.newsletter-post-body__date {
  font-size: 14px !important;
  color: var(--pvg-gray) !important;
  opacity: 0.6;
}

.newsletter-post-body__content {
  border-top: 2px solid var(--pvg-teal) !important;
  border-bottom: 1px solid var(--pvg-light-gray) !important;
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.newsletter-post-body__content .focus-writer-content {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: var(--pvg-charcoal) !important;
}

.newsletter-post-body__content .focus-writer-content h2 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
  margin-top: 36px !important;
  margin-bottom: 12px !important;
}

.newsletter-post-body__content .focus-writer-content h3 {
  font-size: 21px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
}

.newsletter-post-body__content .focus-writer-content a {
  color: var(--pvg-teal) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-post-body__content .focus-writer-content a:hover {
  color: var(--pvg-teal-hover) !important;
}

.newsletter-post-body__content .focus-writer-content blockquote {
  border-left: 3px solid var(--pvg-teal);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--pvg-gray);
}

/* ── Sidebar Styling ─────────────────────────────────── */
.newsletter-sidebar-column {
  padding: 8px 0 !important;
}

.newsletter-search__input {
  border: 1.5px solid var(--pvg-light-gray) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: border-color 0.2s ease;
}

.newsletter-search__input:focus {
  border-color: var(--pvg-teal) !important;
  outline: none;
  box-shadow: 0 0 0 3px var(--pvg-teal-light);
}

/* ── Recent Posts ─────────────────────────────────────── */
.newsletter-recent-post .newsletter-listing__title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--pvg-charcoal) !important;
}

.newsletter-recent-post .newsletter-listing__title:hover {
  color: var(--pvg-teal) !important;
}

.newsletter-recent-post .newsletter-listing__content {
  color: var(--pvg-gray) !important;
}

/* ── Responsive Adjustments ──────────────────────────── */
@media (max-width: 768px) {
  .newsletter-hero__title h3,
  .newsletter-hero__title h2 {
    font-size: 28px !important;
  }

  .newsletter-hero__stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .newsletter-hero__stat-number {
    font-size: 20px;
  }

  .newsletter-listing__title {
    font-size: 19px !important;
  }

  .newsletter-post-body__title {
    font-size: 28px !important;
  }

  .newsletter-pillars__title {
    font-size: 24px;
  }

  .newsletter-masterclass-cta__title {
    font-size: 24px;
  }
}
