/* ── Venture Fish Report Theme Classes ──────────────────────────────────
   Scoped under .vfr-* prefix for no conflicts with site styles.

   CLASSES DEFINED:
   .vfr-blog
   .vfr-page, .vfr-content, .vfr-sidebar, .vfr-widgets
   .vfr-page-header, .vfr-description
   .vfr-card, .vfr-card-media, .vfr-card-title, .vfr-card-meta, .vfr-card-excerpt
   .vfr-post, .vfr-post-header, .vfr-post-body, .vfr-post-footer
   .vfr-post-nav, .vfr-post-related
   .vfr-cta-band, .vfr-cta-title, .vfr-cta-subtitle, .vfr-cta-button
   .vfr-widget, .vfr-widget h3, .vfr-archives
   .vfr-btn-primary, .vfr-btn-ghost
   .vfr-pagination, .vfr-page-numbers
   .vfr-no-posts, .vfr-404, .vfr-blog
   Responsive: @media (max-width: 860px)
   ────────────────────────────────────────────────────────────────────── */

/* ── Root & Global ──────────────────────────────────────────────────── */
:root {
  --vfr-sand: #FAF6EF;
  --vfr-navy: #1c2e3a;
  --vfr-coral: #FCA373;
  --vfr-coral-dark: #fb9057;
  --vfr-text-light: rgba(28, 46, 58, 0.65);
  --vfr-text-lighter: rgba(28, 46, 58, 0.55);
  --vfr-text-lightest: rgba(28, 46, 58, 0.08);
  --vfr-border: 1px solid rgba(28, 46, 58, 0.08);
}

body.vfr-blog {
  background: var(--vfr-sand) !important;
  color: var(--vfr-navy);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vfr-blog * {
  box-sizing: border-box;
}

.vfr-blog h1,
.vfr-blog h2,
.vfr-blog h3,
.vfr-blog h4,
.vfr-blog h5,
.vfr-blog h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--vfr-navy);
  line-height: 1.2;
}

.vfr-blog h1 { font-size: 48px; }
.vfr-blog h2 { font-size: 32px; }
.vfr-blog h3 { font-size: 20px; }
.vfr-blog h4 { font-size: 18px; }
.vfr-blog h5 { font-size: 16px; }
.vfr-blog h6 { font-size: 14px; }

.vfr-blog a {
  color: var(--vfr-coral);
  text-decoration: none;
  transition: color 0.16s ease;
}

.vfr-blog a:hover {
  color: var(--vfr-coral-dark);
}

/* ── Page Layout ────────────────────────────────────────────────────── */
#page.vfr-page {
  display: flex !important;
  gap: 56px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 48px 24px !important;
  background: var(--vfr-sand) !important;
}

#page .vfr-content {
  flex: 1 !important;
  min-width: 0 !important;
}

#page .vfr-sidebar {
  width: 280px !important;
  flex-shrink: 0 !important;
}

/* ── Page Header ────────────────────────────────────────────────────── */
.vfr-page-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: var(--vfr-border);
}

.vfr-page-header h1 {
  margin: 0 0 12px;
  font-size: 48px;
}

.vfr-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(28, 46, 58, 0.78);
  max-width: 780px;
}

/* ── Cards (for grids in main.html.php) ─────────────────────────────── */
#page .vfr-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.vfr-blog .vfr-card {
  display: flex !important;
  flex-direction: column;
  border: var(--vfr-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(28, 46, 58, 0.08);
  transition: box-shadow 0.16s ease, transform 0.16s ease;
  height: 100%;
}

.vfr-blog .vfr-card:hover {
  box-shadow: 0 8px 20px rgba(28, 46, 58, 0.16);
  transform: translateY(-2px);
}

.vfr-blog .vfr-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block !important;
  background: rgba(28, 46, 58, 0.05);
}

.vfr-blog .vfr-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--vfr-navy);
  margin: 16px 14px 8px;
  line-height: 1.3;
  transition: color 0.16s ease;
}

.vfr-blog .vfr-card:hover .vfr-card-title {
  color: var(--vfr-coral);
}

.vfr-blog .vfr-card-meta {
  font-size: 13px;
  color: var(--vfr-text-lighter);
  margin: 0 14px;
  line-height: 1.5;
  font-weight: 400;
}

.vfr-blog .vfr-card-excerpt {
  font-size: 15px;
  color: var(--vfr-navy);
  margin: 0 14px 14px;
  line-height: 1.6;
  flex-grow: 1;
}

/* ── Post Page ──────────────────────────────────────────────────────── */
.vfr-blog .vfr-post {
  margin-bottom: 48px;
}

.vfr-blog .vfr-post-header {
  margin-bottom: 32px;
}

.vfr-blog .vfr-post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--vfr-navy);
  margin: 24px 0 14px;
  line-height: 1.25;
}

.vfr-blog .vfr-post-meta {
  font-size: 13px;
  color: var(--vfr-text-lighter);
  line-height: 1.5;
}

.vfr-blog .vfr-post-meta a {
  color: var(--vfr-coral);
}

.vfr-blog .vfr-post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--vfr-navy);
  max-width: 780px;
  margin-bottom: 40px;
}

.vfr-blog .vfr-post-body p {
  margin: 0 0 16px;
}

.vfr-blog .vfr-post-body h2 {
  margin: 32px 0 16px;
  font-size: 28px;
}

.vfr-blog .vfr-post-body h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.vfr-blog .vfr-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(28, 46, 58, 0.08);
}

.vfr-blog .vfr-post-body ul,
.vfr-blog .vfr-post-body ol {
  margin: 16px 0 16px 24px;
}

.vfr-blog .vfr-post-body li {
  margin-bottom: 8px;
}

.vfr-blog .vfr-post-body blockquote {
  border-left: 3px solid var(--vfr-coral);
  padding: 12px 14px;
  margin: 16px 0;
  background: rgba(252, 163, 115, 0.08);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(28, 46, 58, 0.78);
}

.vfr-blog .vfr-post-footer {
  border-top: var(--vfr-border);
  padding: 24px 0;
  margin: 40px 0;
  font-size: 14px;
  color: var(--vfr-text-lighter);
}

.vfr-blog .vfr-post-nav {
  display: flex !important;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.vfr-blog .vfr-post-nav a {
  color: var(--vfr-coral);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.16s ease;
}

.vfr-blog .vfr-post-nav a:hover {
  color: var(--vfr-coral-dark);
}

/* ── Related Posts ──────────────────────────────────────────────────── */
.vfr-blog .vfr-post-related {
  margin-top: 56px;
  padding-top: 32px;
  border-top: var(--vfr-border);
}

.vfr-blog .vfr-post-related h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.vfr-blog .vfr-post-related-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 24px !important;
}

/* ── CTA Band ──────────────────────────────────────────────────────── */
.vfr-blog .vfr-cta-band {
  background: var(--vfr-navy) !important;
  color: #fff;
  padding: 48px 24px;
  margin: 56px -24px -48px;
  text-align: center;
  border-radius: 0;
}

.vfr-blog .vfr-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.vfr-blog .vfr-cta-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
  line-height: 1.6;
}

.vfr-blog .vfr-cta-button {
  display: inline-block !important;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.vfr-blog .vfr-btn-primary,
.vfr-blog .vfr-btn-ghost {
  display: inline-block !important;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
  line-height: 1;
}

.vfr-blog .vfr-btn-primary {
  background: var(--vfr-coral) !important;
  color: var(--vfr-navy) !important;
  box-shadow: 0 6px 18px rgba(252, 163, 115, 0.45);
}

.vfr-blog .vfr-btn-primary:hover {
  background: var(--vfr-coral-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252, 163, 115, 0.55);
}

.vfr-blog .vfr-btn-primary:active {
  transform: translateY(0);
}

.vfr-blog .vfr-btn-ghost {
  background: transparent !important;
  color: var(--vfr-navy) !important;
  border: 2px solid rgba(28, 46, 58, 0.25) !important;
}

.vfr-blog .vfr-btn-ghost:hover {
  border-color: var(--vfr-navy) !important;
  transform: translateY(-2px);
}

.vfr-blog .vfr-btn-ghost:active {
  transform: translateY(0);
}

/* ── Widgets (Sidebar) ──────────────────────────────────────────────── */
.vfr-blog .vfr-widgets {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

.vfr-blog .vfr-widget {
  background: #fff;
  border: var(--vfr-border);
  border-radius: 8px;
  padding: 20px;
}

.vfr-blog .vfr-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vfr-navy) !important;
  margin: 0 0 16px;
  line-height: 1.3;
}

.vfr-blog .vfr-widget ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vfr-blog .vfr-widget li {
  margin-bottom: 8px;
}

.vfr-blog .vfr-widget a {
  color: var(--vfr-coral) !important;
  font-size: 14px;
  line-height: 1.5;
}

.vfr-blog .vfr-widget a:hover {
  color: var(--vfr-coral-dark) !important;
  text-decoration: underline;
}

.vfr-archives {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vfr-archives li {
  margin-bottom: 8px;
}

.vfr-archives a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--vfr-coral);
}

/* ── Pagination ────────────────────────────────────────────────────── */
.vfr-blog .vfr-pagination {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.vfr-blog .vfr-page-numbers {
  display: flex !important;
  gap: 8px;
  flex-wrap: wrap;
}

.vfr-blog .vfr-page-numbers a,
.vfr-blog .vfr-page-numbers span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid rgba(28, 46, 58, 0.15);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vfr-navy);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.vfr-blog .vfr-page-numbers a:hover {
  border-color: var(--vfr-coral);
  background: rgba(252, 163, 115, 0.08);
}

.vfr-blog .vfr-page-numbers .current {
  background: var(--vfr-coral);
  color: var(--vfr-navy);
  border-color: var(--vfr-coral);
}

/* ── Empty State ────────────────────────────────────────────────────── */
.vfr-blog .vfr-no-posts {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: var(--vfr-border);
  border-radius: 8px;
}

.vfr-blog .vfr-no-posts h2 {
  margin: 0 0 16px;
}

.vfr-blog .vfr-no-posts p {
  margin: 0;
  color: var(--vfr-text-light);
}

/* ── 404 Error ──────────────────────────────────────────────────────── */
.vfr-blog .vfr-404 {
  text-align: center;
  padding: 48px 24px;
}

.vfr-blog .vfr-404 h1 {
  font-size: 64px;
  margin: 0 0 16px;
}

.vfr-blog .vfr-404 p {
  font-size: 17px;
  color: var(--vfr-text-light);
  margin: 0 0 24px;
}

/* ── Responsive Design ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .vfr-page {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .vfr-sidebar {
    width: 100%;
    order: 2;
  }

  .vfr-content {
    order: 1;
  }

  .vfr-page-header {
    margin-bottom: 32px;
  }

  .vfr-page-header h1 {
    font-size: 32px;
  }

  .vfr-description {
    font-size: 15px;
  }

  .vfr-blog h1 { font-size: 32px; }
  .vfr-blog h2 { font-size: 24px; }
  .vfr-blog h3 { font-size: 18px; }

  .vfr-post-header h1 {
    font-size: 28px;
  }

  .vfr-post-body {
    font-size: 15px;
  }

  .vfr-card-title {
    font-size: 20px;
  }

  .vfr-cta-band {
    padding: 32px 24px;
    margin: 32px -24px -24px;
  }

  .vfr-cta-title {
    font-size: 22px;
  }

  .vfr-cta-subtitle {
    font-size: 14px;
  }

  .vfr-btn-primary,
  .vfr-btn-ghost {
    font-size: 14px;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }

  .vfr-widgets {
    gap: 24px;
  }

  .vfr-post-related-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .vfr-page {
    padding: 16px;
  }

  .vfr-page-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .vfr-page-header h1 {
    font-size: 24px;
  }

  .vfr-blog h1 { font-size: 24px; }
  .vfr-blog h2 { font-size: 18px; }
  .vfr-blog h3 { font-size: 16px; }

  .vfr-post-header h1 {
    font-size: 22px;
  }

  .vfr-post-body {
    font-size: 14px;
    line-height: 1.7;
  }

  .vfr-card-title {
    font-size: 18px;
    margin: 12px 10px 6px;
  }

  .vfr-card-meta {
    font-size: 12px;
    margin: 0 10px;
  }

  .vfr-card-excerpt {
    font-size: 14px;
    margin: 0 10px 10px;
  }

  .vfr-cta-band {
    padding: 24px 16px;
    margin: 24px -16px -16px;
  }

  .vfr-cta-title {
    font-size: 18px;
  }

  .vfr-cta-subtitle {
    font-size: 13px;
  }

  .vfr-btn-primary,
  .vfr-btn-ghost {
    font-size: 13px;
    padding: 12px 20px;
  }

  .vfr-pagination {
    margin: 32px 0;
  }

  .vfr-page-numbers a,
  .vfr-page-numbers span {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* Card media: uniform 16:10 crops regardless of source photo shape */
#page .vfr-card-media { overflow: hidden !important; border-radius: 12px 12px 0 0 !important; }
#page .vfr-card-media img { display: block !important; width: 100% !important; height: auto !important; aspect-ratio: 16 / 10 !important; object-fit: cover !important; }
#page .vfr-card-excerpt img, #page .vfr-card-excerpt iframe { max-width: 100% !important; height: auto !important; }

/* ── Facelift: masthead + editorial cards (Sep 2026) ───────────────────── */
.vfr-masthead { background: #1c2e3a !important; text-align: center !important; padding: 150px 24px 46px !important; }
.vfr-masthead-eyebrow { display: inline-block !important; font: 700 12px/1 'Roboto', sans-serif !important; letter-spacing: 0.22em !important; text-transform: uppercase !important; color: #FCA373 !important; margin-bottom: 14px !important; }
.vfr-masthead-title { margin: 0 0 8px !important; font-family: 'Playfair Display', serif !important; font-size: 42px !important; font-weight: 700 !important; line-height: 1.1 !important; }
.vfr-masthead-title a { color: #fff !important; text-decoration: none !important; }
.vfr-masthead-tag { margin: 0 !important; font: 400 16px/1.5 'Roboto', sans-serif !important; color: rgba(255,255,255,0.6) !important; }

#page .vfr-card { display: flex !important; flex-direction: column !important; padding: 0 !important; border-radius: 14px !important; overflow: hidden !important; box-shadow: 0 6px 22px rgba(28,46,58,0.10) !important; transition: transform 0.2s ease, box-shadow 0.2s ease !important; background: #fff !important; }
#page .vfr-card:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 34px rgba(28,46,58,0.18) !important; }
#page .vfr-card-media { position: relative !important; border-radius: 0 !important; }
#page .vfr-card-media img { transition: transform 0.35s ease !important; }
#page .vfr-card:hover .vfr-card-media img { transform: scale(1.04) !important; }
#page .vfr-card-pill { position: absolute !important; bottom: 12px !important; left: 12px !important; z-index: 2 !important; background: #1c2e3a !important; color: #FCA373 !important; font: 700 11px/1 'Roboto', sans-serif !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; padding: 7px 11px !important; border-radius: 999px !important; box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important; }
#page .vfr-card-body { display: flex !important; flex-direction: column !important; flex: 1 !important; padding: 20px 22px 18px !important; }
#page .vfr-card-date { font: 700 12px/1 'Roboto', sans-serif !important; letter-spacing: 0.14em !important; text-transform: uppercase !important; color: rgba(28,46,58,0.45) !important; margin-bottom: 8px !important; }
#page .vfr-card-title { margin: 0 0 10px !important; font-size: 24px !important; line-height: 1.2 !important; }
#page .vfr-card-title a { color: #1c2e3a !important; text-decoration: none !important; transition: color 0.15s !important; }
#page .vfr-card-title a:hover { color: #D97B48 !important; }
#page .vfr-card-excerpt { font-size: 15px !important; line-height: 1.65 !important; color: rgba(28,46,58,0.72) !important; display: -webkit-box !important; -webkit-line-clamp: 4 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; margin-bottom: 16px !important; }
#page .vfr-card-footer { margin-top: auto !important; padding-top: 14px !important; border-top: 1px solid rgba(28,46,58,0.08) !important; }
#page .vfr-read-more { font: 700 13px/1 'Roboto', sans-serif !important; letter-spacing: 0.06em !important; text-transform: uppercase !important; color: #1c2e3a !important; text-decoration: none !important; border-bottom: 2px solid #FCA373 !important; padding-bottom: 3px !important; transition: border-color 0.15s !important; }
#page .vfr-read-more:hover { border-color: #1c2e3a !important; }

@media (max-width: 860px) {
  .vfr-masthead { padding: 125px 20px 36px !important; }
  .vfr-masthead-title { font-size: 30px !important; }
}

/* Pagination */
#page .vfr-pagination { display: flex !important; align-items: center !important; justify-content: center !important; gap: 18px !important; padding: 34px 0 10px !important; }
#page .vfr-page-btn { font: 700 13px/1 'Roboto', sans-serif !important; letter-spacing: 0.06em !important; text-transform: uppercase !important; color: #1c2e3a !important; text-decoration: none !important; border: 2px solid rgba(28,46,58,0.25) !important; border-radius: 6px !important; padding: 12px 18px !important; transition: border-color 0.15s, background 0.15s !important; background: transparent !important; }
#page .vfr-page-btn:hover { border-color: #1c2e3a !important; background: rgba(252,163,115,0.12) !important; }
#page .vfr-page-count { font: 400 14px 'Roboto', sans-serif !important; color: rgba(28,46,58,0.5) !important; letter-spacing: 0.02em !important; }

/* Post images: never exceed the content column */
#page img { max-width: 100% !important; height: auto !important; }
#page .vfr-post-featured img { width: 100% !important; border-radius: 14px !important; object-fit: cover !important; max-height: 560px !important; }
#page .vfr-author-avatar { width: 72px !important; height: 72px !important; border-radius: 50% !important; object-fit: cover !important; }
#page iframe { max-width: 100% !important; }

/* Content tables (fish calendar etc.): styled, scrollable, color-coded */
#page .vfr-content table { display: block; overflow-x: auto; border-collapse: collapse; margin: 22px 0; font-size: 14px; }
#page .vfr-content table th, #page .vfr-content table td { padding: 9px 12px; border: 1px solid rgba(28,46,58,0.12); text-align: center; white-space: nowrap; }
#page .vfr-content table th { background: #1c2e3a; color: #FCA373; font: 700 12px/1.3 'Roboto', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
#page .vfr-content table td:first-child, #page .vfr-content table th:first-child { text-align: left; font-weight: 700; background-clip: padding-box; }
#page .vfr-content table tr:nth-child(even) td { background: rgba(28,46,58,0.03); }
#page .vfr-content td.vfr-r-poor { color: rgba(28,46,58,0.35); }
#page .vfr-content td.vfr-r-fair { color: rgba(28,46,58,0.6); }
#page .vfr-content td.vfr-r-good { background: rgba(252,163,115,0.18) !important; color: #1c2e3a; font-weight: 600; }
#page .vfr-content td.vfr-r-best { background: #FCA373 !important; color: #1c2e3a; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.04em; }

/* CTA band links + calendar widget */
#page .vfr-cta-links { margin-top: 16px !important; font-size: 14px !important; color: rgba(255,255,255,0.65) !important; }
#page .vfr-cta-links a { color: #FCA373 !important; text-decoration: none !important; font-weight: 600 !important; }
#page .vfr-widget-note { font-size: 14px; color: rgba(28,46,58,0.65); margin: 0 0 12px; line-height: 1.5; }
#page .vfr-widget-btn { display: block; text-align: center; font: 700 13px/1 'Roboto', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; background: #FCA373; color: #1c2e3a !important; text-decoration: none !important; padding: 13px 14px; border-radius: 8px; transition: background 0.15s; }
#page .vfr-widget-btn:hover { background: #fb9057; }

/* Breadcrumbs */
.vfr-crumbs { max-width: 1140px; margin: 0 auto; padding: 18px 24px 0; font: 400 14px/1.4 'Roboto', sans-serif; color: rgba(28,46,58,0.55) !important; }
.vfr-crumbs a { color: #D97B48 !important; text-decoration: none !important; font-weight: 600; }
.vfr-crumbs a:hover { color: #1c2e3a !important; }

/* Full-width static pages (calendar etc.): no sidebar, room for tables */
#page.vfr-page-full { display: block !important; max-width: 1140px !important; width: auto !important; margin: 0 auto !important; }
#page.vfr-page-full .vfr-content { display: block !important; flex: none !important; width: auto !important; max-width: none !important; min-width: 0 !important; }
#page.vfr-page-full .vfr-post-body, #page.vfr-page-full .vfr-post { max-width: none !important; width: auto !important; }
/* HTMLy's table-of-contents plugin clashes with this layout; hide its widget */
.toc-wrapper { display: none !important; }

/* Photo strip (calendar page) */
#page .vfr-photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 30px 0 10px; }
#page .vfr-photo-strip img { width: 100% !important; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 22px rgba(28,46,58,0.15); margin: 0 !important; }
@media (max-width: 700px) { #page .vfr-photo-strip { grid-template-columns: 1fr 1fr; } }
