.fb-post {
  background: var(--fb-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
  color: var(--fb-text);
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.fb-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.fb-name {
  font-weight: 700;
  font-size: 15px;
}

.fb-time {
  font-size: 13px;
  color: var(--fb-dim);
}

.fb-body {
  padding: 0 16px 12px;
  line-height: 1.4;
}

.fb-img {
  width: 100%;
  object-fit: cover;
  display: block;
  background: var(--surface-low);
}

.fb-sales-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.fb-sales-strip .conv-chip {
  font-size: 9px;
  padding: 5px 8px;
}

/* Badge row */
.fb-badge-row {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}
.fb-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Link Preview */
.fb-link-preview {
  display: block;
  text-decoration: none;
  background: var(--surface-low);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fb-link-preview img {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
  display: block;
}
[data-theme="dark"] .fb-link-preview {
  background: var(--surface-ctr);
}
.fb-link-info {
  padding: 10px 14px;
}
.fb-link-domain {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--fb-dim);
}
.fb-link-title {
  font-size: 15px;
  font-weight: 600;
  margin: 2px 0 4px;
  color: var(--fb-text);
  line-height: 1.3;
}
.fb-link-desc {
  font-size: 14px;
  color: var(--fb-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-link-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.05), rgba(12, 18, 30, 0.82));
  color: #fff;
}

.fb-link-hero-copy {
  max-width: 280px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.fb-hero-image {
  position: relative;
}

.fb-image-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(12, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.fb-image-panel strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.fb-image-panel p {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

/* Multi-Image Pattern */
.fb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.fb-grid-2 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.fb-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.fb-grid-3 img:first-child {
  grid-row: span 2;
  height: 100%;
}
.fb-grid-3 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* 4-Image Grid */
.fb-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.fb-grid-4 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* 5-Image Grid (+more overlay) */
.fb-grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.fb-grid-5 img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.fb-grid-5 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.fb-grid-5 .fb-grid-more {
  position: relative;
}
.fb-grid-more-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

/* Video Preview */
.fb-video-wrap {
  position: relative;
  background: #000;
}
.fb-video-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  opacity: 0.85;
}
.fb-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
}

/* Video Meta */
.fb-video-meta {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fb-video-duration {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
}
.fb-video-quality {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.fb-stats {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--fb-dim);
  border-bottom: 1px solid var(--border);
  margin: 0 16px;
}
.fb-stats-l {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fb-reaction {
  width: 18px;
  height: 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Multi-reaction stack */
.fb-reaction-stack {
  display: flex;
}
.fb-reaction-stack .fb-reaction {
  margin-left: -4px;
  border: 1px solid var(--fb-bg);
}
.fb-reaction-stack .fb-reaction:first-child {
  margin-left: 0;
}

.fb-bar {
  display: flex;
  justify-content: space-around;
  padding: 4px 16px;
  margin: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-dim);
}
.fb-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 0;
  flex: 1;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.fb-action:hover {
  background: var(--surface-low);
}

/* ═══ CAROUSEL ═══ */
.fb-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.fb-carousel-slides {
  display: flex;
  transition: transform 0.4s ease;
}
.fb-carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.fb-carousel-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.fb-carousel-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
}
.fb-carousel-slide-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.fb-carousel-slide-desc {
  font-size: 12px;
  opacity: 0.8;
}
.fb-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
  color: #333;
}
.fb-carousel-nav.prev { left: 8px; }
.fb-carousel-nav.next { right: 8px; }
.fb-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
}
.fb-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fb-dim);
  opacity: 0.3;
  transition: opacity 0.2s;
}
.fb-carousel-dot.active {
  opacity: 1;
  background: #1877f2;
}
.fb-carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  z-index: 2;
}
.fb-carousel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--surface-low);
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--fb-text);
}
.fb-carousel-cta-btn {
  background: var(--surface-ctr);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fb-text);
  cursor: pointer;
}

/* ═══ EVENT CARD ═══ */
.fb-event-card {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fb-event-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.fb-event-info {
  padding: 12px 16px;
  background: var(--surface-low);
}
.fb-event-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e53935;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.fb-event-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fb-text);
  margin-bottom: 4px;
}
.fb-event-details {
  font-size: 13px;
  color: var(--fb-dim);
  line-height: 1.4;
}
.fb-event-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.fb-event-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
}
.fb-event-btn-primary {
  background: #1877f2;
  color: #fff;
}
.fb-event-btn-secondary {
  background: var(--surface-ctr);
  color: var(--fb-text);
  border: 1px solid var(--border);
}

/* ═══ STORY / REEL MOCKUPS ═══ */
.fb-story-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.fb-story-row::-webkit-scrollbar { display: none; }
.fb-story-item {
  flex: 0 0 110px;
  height: 196px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}
.fb-story-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-story-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
}
.fb-story-av {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #1877f2;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}
.fb-story-av img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fb-story-name {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
.fb-story-create {
  background: var(--surface-low);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
}
.fb-story-create .fb-story-create-img {
  height: 65%;
  width: 100%;
  object-fit: cover;
}
.fb-story-create-plus {
  width: 28px;
  height: 28px;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: -14px;
  border: 3px solid var(--fb-bg);
  position: relative;
  z-index: 2;
}
.fb-story-create-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fb-text);
  margin-top: 6px;
}

/* ═══ REEL ═══ */
.fb-reel-wrap {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  max-width: 260px;
  aspect-ratio: 9/16;
}
.fb-reel-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-reel-ov {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.fb-reel-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
}
.fb-reel-caption {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.9;
}
.fb-reel-sidebar {
  position: absolute;
  right: 8px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 10px;
}
.fb-reel-sidebar > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.fb-reel-sidebar .material-symbols-outlined {
  font-size: 22px;
}

/* ═══ STATUS GRADIENT POST ═══ */
.fb-status-gradient {
  padding: 40px 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  position: relative;
}
.fb-status-gradient.grad-editorial {
  background: linear-gradient(135deg, var(--navy), #9d84f3, var(--coral));
}
.fb-status-gradient.grad-midnight {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}
.fb-status-gradient.grad-sunset {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24, #f0932b);
}
.fb-status-gradient.grad-ocean {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.fb-status-gradient.grad-mint {
  background: linear-gradient(135deg, var(--teal), #20bf6b, var(--mint));
}

/* ═══ POLL ═══ */
.fb-poll {
  padding: 0 16px 12px;
}
.fb-poll-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.fb-poll-opt:hover {
  border-color: #1877f2;
}
.fb-poll-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(24,119,242,0.1);
  border-radius: 8px;
  transition: width 0.4s ease;
}
.fb-poll-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.fb-poll-pct {
  font-size: 14px;
  font-weight: 700;
  color: #1877f2;
  position: relative;
  z-index: 1;
}
.fb-poll-meta {
  font-size: 12px;
  color: var(--fb-dim);
  margin-top: 4px;
  padding: 0 4px;
}

/* ═══ LIVE VIDEO ═══ */
.fb-live-wrap {
  position: relative;
  background: #000;
}
.fb-live-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.8;
}
.fb-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: fb-live-pulse 2s infinite;
}
.fb-live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
@keyframes fb-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.fb-live-viewers {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fb-live-ov {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}
.fb-live-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.fb-live-desc {
  font-size: 12px;
  opacity: 0.8;
}
.fb-live-reactions-float {
  position: absolute;
  right: 14px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  animation: fb-reactions-float 3s ease-in-out infinite;
}
@keyframes fb-reactions-float {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ═══ MARKETPLACE LISTING ═══ */
.fb-marketplace-card {
  border-top: 1px solid var(--border);
}
.fb-marketplace-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.fb-marketplace-info {
  padding: 12px 16px;
}
.fb-marketplace-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--fb-text);
  margin-bottom: 2px;
}
.fb-marketplace-title {
  font-size: 14px;
  color: var(--fb-dim);
  margin-bottom: 4px;
}
.fb-marketplace-location {
  font-size: 12px;
  color: var(--fb-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}
.fb-marketplace-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(24,119,242,0.1);
  color: #1877f2;
  margin-top: 6px;
}
.fb-marketplace-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* ═══ FUNDRAISER ═══ */
.fb-fundraiser-card {
  border-top: 1px solid var(--border);
}
.fb-fundraiser-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.fb-fundraiser-info {
  padding: 12px 16px;
  background: var(--surface-low);
}
.fb-fundraiser-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fb-text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.fb-fundraiser-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.fb-fundraiser-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #20bf6b);
  border-radius: 3px;
}
.fb-fundraiser-stats {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fb-dim);
}
.fb-fundraiser-raised {
  font-weight: 700;
  color: var(--teal);
}
.fb-fundraiser-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 16px;
  background: #1877f2;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

/* ═══ GROUP POST ═══ */
.fb-group-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fb-dim);
  margin-top: 2px;
}
.fb-group-badge strong {
  color: var(--fb-text);
}

/* ═══ SHARED POST (RE-SHARE) ═══ */
.fb-shared-inner {
  margin: 0 16px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.fb-shared-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.fb-shared-name {
  font-weight: 600;
  font-size: 13px;
}
.fb-shared-time {
  font-size: 11px;
  color: var(--fb-dim);
}
.fb-shared-body {
  padding: 0 12px 8px;
  font-size: 13px;
  color: var(--fb-dim);
  line-height: 1.4;
}
.fb-shared-inner img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* ═══ CHECK-IN POST ═══ */
.fb-checkin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--fb-dim);
}
.fb-checkin strong {
  color: var(--fb-text);
}

/* ═══ PAGE REVIEW ═══ */
.fb-review-stars {
  display: flex;
  gap: 2px;
  margin: 8px 16px 4px;
}
.fb-review-star {
  color: #f59e0b;
  font-size: 18px;
}
.fb-review-text {
  padding: 0 16px 12px;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  color: var(--fb-dim);
}
.fb-review-meta {
  padding: 0 16px 12px;
  font-size: 12px;
  color: var(--fb-dim);
}

/* ═══ SPONSORED / AD ═══ */
.fb-sponsored-tag {
  font-size: 12px;
  color: var(--fb-dim);
  display: flex;
  align-items: center;
  gap: 3px;
}
.fb-ad-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--surface-low);
  border-top: 1px solid var(--border);
}
.fb-ad-headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text);
  line-height: 1.3;
}
.fb-ad-domain {
  font-size: 12px;
  color: var(--fb-dim);
}
.fb-ad-cta-btn {
  background: #1877f2;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* ═══ PAGE PROFILE PREVIEW ═══ */
.fb-page-profile {
  background: var(--fb-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--fb-text);
}
.fb-page-cover {
  width: 100%;
  aspect-ratio: 2.7/1;
  object-fit: cover;
  display: block;
}
.fb-page-header {
  padding: 0 16px;
  position: relative;
}
.fb-page-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--fb-bg);
  overflow: hidden;
  margin-top: -36px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.fb-page-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fb-page-info {
  padding: 8px 16px 12px;
}
.fb-page-name {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fb-page-verified {
  width: 16px;
  height: 16px;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}
.fb-page-category {
  font-size: 14px;
  color: var(--fb-dim);
  margin-top: 2px;
}
.fb-page-stats-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--fb-dim);
  margin-top: 6px;
}
.fb-page-actions {
  display: flex;
  gap: 8px;
  padding: 8px 16px 14px;
}
.fb-page-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.fb-page-btn-primary {
  background: #1877f2;
  color: #fff;
}
.fb-page-btn-secondary {
  background: var(--surface-low);
  color: var(--fb-text);
  border: 1px solid var(--border);
}
.fb-page-tabs {
  display: flex;
  border-top: 1px solid var(--border);
}
.fb-page-tab {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fb-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.fb-page-tab.active {
  color: #1877f2;
  border-bottom-color: #1877f2;
}

/* ═══ LAYOUT GRIDS ═══ */
.fb-guidelines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .fb-guidelines-grid {
    grid-template-columns: 1fr;
  }
}

.fb-formats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.fb-formats-row-3col {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.fb-formats-row-3col > .mkbox {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
}

/* ═══ STORY + REEL ROW ═══ */
.fb-stories-reels-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}
