/* Blog-specific styles (additions on top of /css/style.css) */
.pfl-blog-hero {
  background: linear-gradient(180deg, #fff 0%, #f7f6f4 100%);
  padding: 56px 0 40px;
}
.pfl-blog-hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.pfl-blog-eyebrow {
  font-size: 13px; letter-spacing: 0.12em; color: #D8333B;
  font-weight: 600; margin: 0 0 12px; text-transform: uppercase;
}
.pfl-blog-hero h1 {
  font-size: 40px; font-weight: 800; line-height: 1.1; margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.pfl-blog-hero-sub {
  font-size: 17px; color: #4a4a4f; margin: 0 0 24px; max-width: 720px;
}
.pfl-blog-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.pfl-blog-chip {
  display: inline-block;
  background: #fff; border: 1px solid #e5e5e7;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: #1d1d1f !important;
  transition: border-color 150ms, background 150ms;
}
.pfl-blog-chip:hover {
  border-color: #D8333B; background: #fff5f6; text-decoration: none;
}
.pfl-blog-index {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px 56px;
}
.pfl-blog-section-title {
  font-size: 22px; font-weight: 700; margin: 0 0 24px;
}
.pfl-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pfl-blog-card {
  display: block;
  background: #fff; border: 1px solid #e5e5e7; border-radius: 14px;
  overflow: hidden;
  color: #1d1d1f !important; text-decoration: none !important;
  transition: box-shadow 200ms, transform 200ms;
}
.pfl-blog-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pfl-blog-card img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
}
.pfl-blog-card-body {
  padding: 18px 22px 22px;
}
.pfl-blog-card-cat {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #D8333B; font-weight: 600; margin-bottom: 8px;
}
.pfl-blog-card-body h3 {
  font-size: 17px; font-weight: 700; margin: 0 0 8px; line-height: 1.35;
}
.pfl-blog-card-body p {
  font-size: 14px; color: #4a4a4f; margin: 0 0 12px; line-height: 1.5;
}
.pfl-blog-card-date {
  font-size: 12.5px; color: #8a8a8f;
}
.pfl-blog-breadcrumb {
  font-size: 13px; color: #6e6e73; margin: 0 0 18px;
}
.pfl-blog-breadcrumb a { color: #6e6e73; }
.pfl-blog-post .pfl-article-page { padding-top: 24px; }
.pfl-blog-faq {
  margin: 48px 0 8px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e7;
}
.pfl-blog-faq h2 {
  font-size: 24px; font-weight: 700; margin: 0 0 22px;
}
@media (max-width: 900px) {
  .pfl-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pfl-blog-hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .pfl-blog-grid { grid-template-columns: 1fr; }
  .pfl-blog-hero h1 { font-size: 26px; }
}
