/* ========================================
   FRONT PAGE: TRENDING BAR
======================================== */
.fp-trending-bar {
  background: var(--bh-bg-alt);
  border-bottom: 1px solid var(--bh-border);
  padding: 8px 0;
  overflow: hidden;
}
.fp-trending-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fp-trending-inner::-webkit-scrollbar {
  display: none;
}
.fp-trending-label {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 4px 12px;
  background: #1abc9c;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
[data-theme="dark"] .fp-trending-label {
  background: #f7941d;
  color: #fff;
}
.fp-trending-tags {
  display: flex;
  gap: 0;
  align-items: center;
}
.fp-trending-tag {
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--bh-text-secondary);
  padding: 4px 10px;
  border-radius: var(--bh-radius-full);
  transition: all var(--bh-transition-fast);
  font-weight: 500;
  flex-shrink: 0;
}
.fp-trending-tag:hover {
  background: var(--bh-primary-alpha);
  color: var(--bh-primary);
}
.fp-trending-tag::before {
  content: "·";
  margin-right: 8px;
  color: var(--bh-text-muted);
  font-weight: 900;
}

/* ========================================
   FRONT PAGE: HERO SECTION
======================================== */
.fp-hero-section {
  padding: 28px 0 36px;
}

.fp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: stretch;
}

.fp-hero-left {
  height: 100%;
}

/* --- Hero Card (Large CTA Card) --- */
.fp-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  color: #475569;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.fp-hero-card::before {
  display: none;
}
.fp-hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #1abc9c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 6px;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(26, 188, 156, 0.4);
}
.fp-hero-card-inner {
  display: flex;
  align-items: stretch;
  min-height: 300px;
  flex: 1;
}
.fp-hero-card-content {
  flex: 1;
  padding: 58px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-width: 0;
  position: relative;
}
.fp-hero-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #1abc9c;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.fp-hero-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 360px;
}
.fp-hero-points {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.fp-hero-points li {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.fp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #1abc9c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.fp-hero-cta {
  display: none; /* Hidden - CTA moved to geo-strip */
}

/* Hero Image (Right side of hero card) */
.fp-hero-card-image {
  width: 44%;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}
.fp-hero-card-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}
.fp-hero-card:hover .fp-hero-card-image img {
  transform: scale(1.02);
}
.fp-hero-card-image::before {
  display: none;
}

/* ========================================
   GEO STRIP (USA Focus)
======================================== */
.fp-geo-strip {
  border: 1px solid #1abc9c;
  border-radius: 12px;
  margin: 0 20px 20px;
  padding: 0;
  position: relative;
  z-index: 2;
}
.fp-geo-strip .bh-container {
  padding: 0;
  max-width: 100%;
}
.fp-geo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #1a202c;
  flex-wrap: wrap;
}
.fp-geo-inner > span:first-of-type {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-geo-inner strong {
  background: #1abc9c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(26, 188, 156, 0.3);
}
.fp-geo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1abc9c;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all var(--bh-transition-fast);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(26, 188, 156, 0.35);
}
.fp-geo-link:hover {
  background: #16a085;
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(26, 188, 156, 0.45);
}

/* ========================================
   TRUST LINKS
======================================== */
.fp-trust-links {
  background: #f1f5f9;
  padding: 12px 20px;
  margin: 0 20px 0;
  border-radius: 0 0 12px 12px;
}
.fp-trust-links .bh-container {
  padding: 0;
  max-width: 100%;
}
.fp-trust-text {
  font-size: 0.82rem;
  color: #475569;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-trust-text a {
  color: #00aeee;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fp-trust-text a:hover {
  text-decoration: underline;
}
.fp-trust-text a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 16"><rect fill="%23bf0a30" width="24" height="16"/><rect fill="%23fff" y="1.23" width="24" height="1.23"/><rect fill="%23bf0a30" y="2.46" width="24" height="1.23"/><rect fill="%23fff" y="3.69" width="24" height="1.23"/><rect fill="%23bf0a30" y="4.92" width="24" height="1.23"/><rect fill="%23fff" y="6.15" width="24" height="1.23"/><rect fill="%23bf0a30" y="7.38" width="24" height="1.23"/><rect fill="%233c3b6e" width="9.6" height="8.62"/></svg>') no-repeat center;
  background-size: contain;
}

/* ========================================
   HERO POSTS GRID (3 Posts Below Hero Card)
======================================== */
.fp-hero-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.fp-hero-post-card {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.fp-hero-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--bh-primary);
}
.fp-hero-post-thumb {
  display: block;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
.fp-hero-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fp-hero-post-card:hover .fp-hero-post-thumb img {
  transform: scale(1.08);
}
.fp-hero-post-no-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}
.fp-post-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
}
.fp-hero-post-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fp-hero-post-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  flex: 1;
}
.fp-hero-post-info h4 a {
  color: var(--bh-text);
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-hero-post-info h4 a:hover {
  color: var(--bh-primary);
}
.fp-hero-post-date {
  font-size: 0.75rem;
  color: var(--bh-text-muted);
}

@media (max-width: 768px) {
  .fp-hero-posts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fp-hero-post-thumb {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .fp-hero-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fp-hero-post-card:nth-child(3) {
    grid-column: span 2;
  }
}

/* ========================================
   HERO FOOTER BAR
======================================== */
.fp-hero-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 14px 0;
  margin-top: 20px;
}
.fp-hero-footer .bh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.fp-footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fp-footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}
.fp-footer-badge .fp-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1abc9c;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
.fp-footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-footer-link {
  font-size: 0.82rem;
  color: #64748b;
  text-decoration: none;
  padding: 4px 8px;
}
.fp-footer-link:hover {
  color: #00aeee;
}
.fp-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00aeee;
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all var(--bh-transition-fast);
}
.fp-footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.fp-footer-social a.fp-social-fb { background: #00aeee; }
.fp-footer-social a.fp-social-tw { background: #1abc9c; }
.fp-footer-social a.fp-social-yt { background: #f7941d; }

/* ========================================
   FRONT PAGE: RIGHT SIDEBAR WIDGETS
======================================== */
.fp-hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fp-widget-box {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--bh-transition);
}
.fp-widget-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.fp-widget-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bh-text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bh-border);
  letter-spacing: -0.01em;
}

/* Quick Categories */
.fp-quick-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fp-quick-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border-radius: 14px;
  color: white !important;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 75px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.fp-quick-cat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.fp-quick-cat:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: white !important;
}
.fp-qc-name {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.fp-qc-count {
  font-size: 0.74rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Top Methods / Posts */
.fp-top-methods {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fp-top-method-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-bottom: 1px solid var(--bh-border-light);
  color: var(--bh-text);
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
  margin: 0 -8px;
}
.fp-top-method-item:last-child {
  border-bottom: none;
}
.fp-top-method-item:hover {
  background: var(--bh-bg-alt);
  color: var(--bh-primary);
}
.fp-top-method-item:hover .fp-method-name {
  color: var(--bh-primary);
}
.fp-top-method-item:hover .fp-rank {
  transform: scale(1.1);
}
.fp-rank {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bh-surface);
  color: var(--bh-text-secondary);
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.fp-rank-1 {
  background: linear-gradient(135deg, #f7941d 0%, #f9a84a 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.35);
}
.fp-rank-2 {
  background: linear-gradient(135deg, #00aeee 0%, #33c1f5 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 174, 238, 0.35);
}
.fp-rank-3 {
  background: linear-gradient(135deg, #1abc9c 0%, #48d1b5 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(26, 188, 156, 0.35);
}
.fp-rank-4 {
  background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.35);
}
.fp-rank-5 {
  background: linear-gradient(135deg, #9b59b6 0%, #b07cc6 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.35);
}
.fp-method-name {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--bh-text);
  transition: color 0.2s ease;
}

/* Stories / Activity */
.fp-widget-stories {
  padding-bottom: 14px;
}
.fp-story-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-border-light);
}
.fp-story-item:last-child {
  border-bottom: none;
}
.fp-story-avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.fp-story-info {
  flex: 1;
  min-width: 0;
}
.fp-story-name {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--bh-text);
  margin-bottom: 1px;
}
.fp-story-text {
  display: block;
  font-size: 0.75rem;
  color: var(--bh-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fp-no-stories {
  font-size: 0.82rem;
  color: var(--bh-text-muted);
  text-align: center;
  padding: 12px 0;
}

/* ========================================
   FRONT PAGE: SECTION HEADER
======================================== */
.fp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  padding-top: 10px;
  border-top: 4px solid var(--bh-text);
  border-bottom: 1px solid var(--bh-border);
}
.fp-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bh-text);
  margin: 0;
  letter-spacing: -0.01em;
}
.fp-view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bh-text-secondary);
  transition: color var(--bh-transition-fast);
  white-space: nowrap;
}
.fp-view-all:hover {
  color: var(--bh-primary);
}

/* ========================================
   FRONT PAGE: LATEST GUIDES
======================================== */
.fp-latest-section {
  padding: 0 0 32px;
}
.fp-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fp-latest-card {
  position: relative;
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--bh-transition);
}
.fp-latest-card:hover {
  box-shadow: var(--bh-shadow-md);
  transform: translateY(-3px);
}
.fp-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1abc9c;
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 5px;
  z-index: 2;
  text-transform: uppercase;
}
.fp-latest-thumb {
  display: block;
  overflow: hidden;
  height: 155px;
}
.fp-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fp-latest-card:hover .fp-latest-thumb img {
  transform: scale(1.05);
}
.fp-latest-info {
  padding: 14px 16px;
}
.fp-latest-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.fp-latest-info h4 a {
  color: var(--bh-text);
}
.fp-latest-info h4 a:hover {
  color: var(--bh-primary);
}
.fp-latest-meta {
  font-size: 0.73rem;
  color: var(--bh-text-muted);
}

/* ========================================
   FORBES-STYLE CATEGORY SECTIONS
======================================== */
.forbes-category-section {
  padding: 32px 0;
}
.forbes-category-section.has-border-top {
  border-top: 2px solid var(--bh-border);
}

.forbes-section-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: start;
}

/* Left Column */
.forbes-left-col {
  padding-right: 28px;
  border-right: 1px solid var(--bh-border);
}

/* Featured Post (Large) */
.forbes-featured-post {
  margin-bottom: 24px;
}
.forbes-featured-img {
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 4px;
}
.forbes-featured-img img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  transition: opacity var(--bh-transition-fast);
}
.forbes-featured-img:hover img {
  opacity: 0.9;
}
.forbes-featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.forbes-featured-title a {
  color: var(--bh-text);
}
.forbes-featured-title a:hover {
  color: var(--bh-text-secondary);
}

/* Byline */
.forbes-post-byline {
  font-size: 0.76rem;
  color: var(--bh-text-muted);
  line-height: 1.5;
}
.forbes-author {
  color: var(--bh-text-secondary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.forbes-author:hover {
  color: var(--bh-primary);
}
.forbes-role {
  color: var(--bh-text-muted);
}

/* Small Posts 2x2 Grid */
.forbes-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bh-border);
}
.forbes-small-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
}
.forbes-small-post:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid var(--bh-border);
}
.forbes-small-post:nth-child(even) {
  padding-left: 18px;
}
.forbes-small-post:nth-child(1),
.forbes-small-post:nth-child(2) {
  border-bottom: 1px solid var(--bh-border);
}
.forbes-small-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 55px;
  overflow: hidden;
  display: block;
  border-radius: 3px;
}
.forbes-small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--bh-transition-fast);
}
.forbes-small-thumb:hover img {
  opacity: 0.85;
}
.forbes-small-info {
  flex: 1;
  min-width: 0;
}
.forbes-small-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}
.forbes-small-title a {
  color: var(--bh-text);
}
.forbes-small-title a:hover {
  color: var(--bh-text-secondary);
}

/* Right Column (2 stacked posts) */
.forbes-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
}
.forbes-right-post:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--bh-border);
}
.forbes-right-img {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 4px;
}
.forbes-right-img img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  transition: opacity var(--bh-transition-fast);
}
.forbes-right-img:hover img {
  opacity: 0.9;
}
.forbes-right-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.forbes-right-title a {
  color: var(--bh-text);
}
.forbes-right-title a:hover {
  color: var(--bh-text-secondary);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .fp-hero-grid {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .fp-hero-grid {
    grid-template-columns: 1fr;
  }
  .fp-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .forbes-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .forbes-left-col {
    padding-right: 0;
    border-right: none;
  }
  .forbes-right-col {
    flex-direction: row;
    gap: 18px;
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--bh-border);
  }
  .forbes-right-post {
    flex: 1;
  }
  .forbes-right-post:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid var(--bh-border);
    padding-right: 18px;
  }
}

@media (max-width: 768px) {
  .fp-hero-card-inner {
    flex-direction: column-reverse;
  }
  .fp-hero-card-image {
    width: 100%;
    height: 200px;
    padding: 10px;
  }
  .fp-hero-card-image::before {
    display: none;
  }
  .fp-hero-card-content {
    padding: 28px 20px 22px;
  }
  .fp-hero-right {
    grid-template-columns: 1fr;
  }
  .fp-latest-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .forbes-right-col {
    flex-direction: column;
  }
  .fp-geo-strip {
    margin: 0 12px 12px;
  }
  .fp-geo-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .fp-trust-links {
    margin: 0 12px 0;
  }
  .fp-trust-text {
    justify-content: center;
    text-align: center;
  }
  .fp-hero-footer .bh-container {
    flex-direction: column;
    text-align: center;
  }
  .fp-footer-badges {
    justify-content: center;
  }
  .fp-footer-links {
    justify-content: center;
  }
  .fp-footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .forbes-small-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .forbes-small-post:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .forbes-small-post:nth-child(even) {
    padding-left: 0;
  }
  .forbes-small-post:not(:last-child) {
    border-bottom: 1px solid var(--bh-border) !important;
  }
  .fp-hero-title {
    font-size: 1.2rem;
  }
  .forbes-featured-title {
    font-size: 1.05rem;
  }
  .fp-quick-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}
