/**
 * Main-site layout and components. Load after design-tokens.css.
 * Breakpoints: --bp-mobile 767px, --bp-tablet 980px
 */
 * { box-sizing: border-box; }

 /* Skip link */
 .skip-link {
	 position: absolute;
	 left: -9999px;
	 top: 0;
	 z-index: 9999;
	 padding: 12px 24px;
	 background: var(--accent);
	 color: var(--cta-text);
	 font-weight: 700;
	 font-size: 14px;
	 text-decoration: none;
	 border-radius: 0 0 var(--radius-sm) 0;
 }
 
 .skip-link:focus {
	 left: 0;
 }
 
 html {
	 font-size: 16px;
	 -webkit-text-size-adjust: 100%;
	 text-size-adjust: 100%;
	 overflow-x: hidden;
 }
 
 body {
	 overflow-y: auto;
	 overflow-x: hidden;
	 margin: 0;
	 padding: 0;
	 width: 100%;
	 max-width: 100vw;
	 font-family: var(--main-font);
	 background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg) 100%);
	 background-attachment: fixed;
	 color: var(--text);
 }
 
 body.light-mode { background: var(--bg); }
 
 /* Banner: only index has #banner-placeholder. When present, add .has-banner to body so header sits below. */
 .discount-banner {
	 background: transparent;
	 color: var(--text);
	 padding: 0;
	 text-align: center;
	 font-size: 13px;
	 font-weight: 600;
	 letter-spacing: 0.3px;
	 position: sticky;
	 top: 0;
	 overflow: hidden;
	 z-index: 1001;
	 max-height: 0;
	 width: 100%;
	 max-width: 100%;
	 border-bottom: 1px solid transparent;
	 box-shadow: none;
	 margin: 0;
	 backdrop-filter: blur(10px);
	 transition: max-height 0.5s ease, padding 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
 }
 
 .discount-banner.is-visible {
	 max-height: 200px;
	 border-bottom: 1px solid var(--card-border);
 }
 
 .discount-banner-message {
	 width: 100%;
 }
 
 .discount-banner-close {
	 position: absolute;
	 right: 12px;
	 top: 50%;
	 transform: translateY(-50%);
	 background: rgba(0, 0, 0, 0.3);
	 border: none;
	 color: var(--banner-close-color, #ffffff);
	 font-size: 16px;
	 line-height: 1;
	 cursor: pointer;
	 padding: 4px 8px;
	 border-radius: 50%;
	 z-index: 2;
	 transition: background 0.2s ease;
 }
 
 .discount-banner-close:hover { background: rgba(0, 0, 0, 0.6); }
 
 .discount-banner-message p {
	 margin: 0;
	 padding: 8px 24px;
	 width: 100%;
	 box-sizing: border-box;
 }
 .discount-banner-message p.has-background {
	 padding: 8px 24px;
 }
 
 .discount-banner-message a {
	 color: inherit;
	 text-decoration: none;
 }
 
 body.light-mode .discount-banner {
	 background: transparent;
 }
 
 body.light-mode .discount-banner.is-visible {
	 box-shadow: var(--shadow-sm);
 }
 
 .design-banner-2 {
	 margin: 0;
	 padding: 28px 24px;
	 min-height: 96px;
	 background: #000000 !important;
	 color: #ffffff !important;
 }
 
 .design-banner-2 .discount-banner-message {
	 font-size: 28px;
	 font-weight: 900;
	 color: var(--banner-color, #ffffff);
 }
 
 .design-banner { padding: 16px 24px; min-height: 56px; }
 
 .design-banner-link {
	 text-decoration: none;
	 color: var(--text);
	 font-size: 18px;
	 font-weight: 900;
	 letter-spacing: 0.5px;
	 transition: all 0.2s ease;
	 display: block;
	 width: 100%;
	 text-align: center;
 }
 
 body.light-mode .design-banner-link { color: var(--text); }
 .design-banner-link:hover { color: var(--accent); }
 body.light-mode .design-banner-link:hover { color: var(--text); }
 
 /* Site header: top 0 by default; when body.has-banner, header sits below banner (56px) */
 .site-header {
	 position: sticky;
	 top: 0;
	 z-index: 1000;
	 transition: top 0.5s ease;
	 background: var(--header-bg);
	 backdrop-filter: blur(10px);
	 border-bottom: none;
	 box-shadow: var(--shadow-sm);
	 width: 100%;
	 max-width: 100%;
	 margin: 0;
	 padding: 8px max(48px, calc((100% - 1600px) / 2 + 48px));
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 flex-wrap: nowrap;
 }
 
 body.has-banner .site-header { top: 36px; }
 
 body.light-mode .site-header {
	 background: var(--header-bg);
	 box-shadow: var(--shadow-sm);
 }
 
 .site-logo {
	 font-family: var(--main-font);
	 font-weight: 700;
	 font-size: 18px;
	 letter-spacing: 0.5px;
	 color: var(--text);
	 text-decoration: none;
	 display: flex;
	 align-items: center;
 }
 
 .site-logo img { height: 36px; width: auto; max-width: 100%; }
 
 .site-nav { display: flex; gap: 20px; align-items: center; flex-wrap: nowrap; }
 
 .nav-link {
	 color: var(--text);
	 text-decoration: none;
	 font-size: 14px;
	 font-weight: 500;
	 padding: 6px 12px;
	 border-radius: var(--radius-sm);
	 transition: all 0.2s ease;
	 position: relative;
 }
 
 .nav-link:hover { color: var(--accent); background: var(--accent-soft); }
 body.light-mode .nav-link:hover { background: var(--accent-soft); }
 .nav-link:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
 .nav-link.active { color: var(--accent); background: var(--accent-soft); }
 body.light-mode .nav-link.active { background: var(--accent-soft); }
 
 .nav-dropdown { position: relative; }
 .nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
 .nav-dropdown-toggle::after {
	 content: '';
	 width: 0; height: 0;
	 border-left: 4px solid transparent;
	 border-right: 4px solid transparent;
	 border-top: 5px solid currentColor;
	 transition: transform 0.2s ease;
 }
 .nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
 
 .nav-dropdown-menu {
	 position: absolute;
	 top: 100%; left: 0;
	 margin-top: 8px;
	 background: var(--card);
	 border: 1px solid var(--card-border);
	 border-radius: var(--radius-sm);
	 padding: 8px 0;
	 min-width: 200px;
	 box-shadow: var(--shadow-sm);
	 opacity: 0;
	 visibility: hidden;
	 transform: translateY(-10px);
	 transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	 z-index: 1000;
 }
 
 .nav-dropdown:hover .nav-dropdown-menu {
	 opacity: 1;
	 visibility: visible;
	 transform: translateY(0);
 }
 
 .nav-dropdown-item {
	 display: block;
	 padding: 10px 20px;
	 color: var(--text);
	 text-decoration: none;
	 font-size: 14px;
	 font-weight: 500;
	 transition: background 0.2s ease, color 0.2s ease;
 }
 
 .nav-dropdown-item:hover { background: var(--accent-soft); color: var(--accent); }
 body.light-mode .nav-dropdown-item:hover { background: var(--accent-soft); }
 
 .cart-link { display: flex; align-items: center; justify-content: center; position: relative; }
 .cart-link svg { width: 20px; height: 20px; }
 .bpc-cart-count {
	 position: absolute;
	 top: -6px;
	 right: -8px;
	 min-width: 18px;
	 height: 18px;
	 line-height: 18px;
	 text-align: center;
	 font-size: 11px;
	 font-weight: 700;
	 color: var(--cta-text);
	 background: var(--cta);
	 border-radius: 9px;
	 padding: 0 4px;
	 pointer-events: none;
 }
 
 .theme-toggle {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 6px;
	 border-radius: var(--radius-sm);
	 background: var(--surface-hover);
	 border: 1px solid var(--border-subtle);
	 color: var(--text);
	 cursor: pointer;
	 transition: all 0.2s ease;
	 width: 32px;
	 height: 32px;
 }
 
 .theme-toggle:hover { background: var(--border-subtle); border-color: var(--accent); }
 .theme-toggle:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
 .theme-toggle svg { width: 18px; height: 18px; }
 body.light-mode .theme-toggle { background: var(--surface-hover); border-color: var(--border-subtle); }
 body.light-mode .theme-toggle:hover { background: var(--border-subtle); border-color: var(--accent); }
 
 /* Mobile menu (used by nav component) */
 .mobile-menu-toggle {
	 display: none;
	 flex-direction: column;
	 justify-content: center;
	 gap: 6px;
	 width: 40px;
	 height: 40px;
	 background: transparent;
	 border: none;
	 cursor: pointer;
	 padding: 8px;
 }
 
 .mobile-menu-toggle span {
	 width: 24px;
	 height: 2px;
	 background: var(--text);
	 transition: transform 0.2s ease, opacity 0.2s ease;
 }
 
 .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
 .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
 .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
 
 .mobile-menu {
	 position: fixed;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 width: 280px;
	 max-width: 85vw;
	 background: var(--card);
	 border-left: 1px solid var(--card-border);
	 padding: 80px 24px 20px;
	 z-index: 1100;
	 transform: translateX(100%);
	 transition: transform 0.3s ease;
	 overflow-y: auto;
 }
 
 .mobile-menu.active { transform: translateX(0); }
 .mobile-menu .nav-link { display: block; padding: 16px 0; font-size: 16px; }
 .mobile-menu .theme-toggle { margin-top: 24px; width: 100%; justify-content: flex-start; }
 .mobile-menu .cart-link { display: flex; justify-content: flex-start; }
 
 @media (max-width: 768px) {
	 .site-header { padding: 12px 16px; flex-wrap: nowrap; }
	 .site-logo { flex: 0 0 auto; min-width: 0; }
	 .site-logo img { height: 30px; }
	 .site-nav { gap: 8px; flex: 0 0 auto; margin-left: auto; order: 1; }
	 .site-nav .nav-link:not(.cart-link) { display: none; }
	 .nav-dropdown { display: none; }
	 .cart-link { display: flex; }
	 .theme-toggle { padding: 6px; }
	 .theme-toggle svg { width: 16px; height: 16px; }
	 .mobile-menu-toggle { display: flex; flex: 0 0 auto; margin-left: 4px; order: 2; }
	 .discount-banner { font-size: 11px; line-height: 1.4; max-height: 120px; }
	 .discount-banner.is-visible { max-height: 120px; }
	 .discount-banner-message { font-size: 11px; }
	 .discount-banner-message p { padding: 6px 32px 6px 12px; }
	 .mobile-menu { padding: 60px 16px 20px; }
	 .mobile-menu .nav-link { font-size: 16px; padding: 14px 0; display: block; }
	 .mobile-menu .theme-toggle { margin-top: 20px; padding: 12px; }
 }
 
 @media (max-width: 480px) {
	 .site-header { padding: 10px 12px; }
	 .site-logo img { height: 24px; }
	 .theme-toggle { padding: 5px 8px; }
	 .theme-toggle svg { width: 14px; height: 14px; }
	 .discount-banner { font-size: 10px; line-height: 1.35; max-height: 100px; }
	 .discount-banner.is-visible { max-height: 100px; }
	 .discount-banner-message p { padding: 4px 28px 4px 10px; }
	 .discount-banner-close { right: 8px; padding: 3px 6px; font-size: 14px; }
	 .content-section { padding: 60px 16px; }
 }
 
 /* Breadcrumbs */
 .breadcrumbs {
	 max-width: 1600px;
	 margin: 0 auto;
	 padding: 20px 24px;
	 display: flex;
	 align-items: center;
	 gap: 8px;
	 font-size: 14px;
 }
 
 .breadcrumb-item {
	 color: var(--muted);
	 text-decoration: none;
	 transition: color 0.2s ease;
 }
 
 .breadcrumb-item:hover {
	 color: var(--accent);
 }
 
 .breadcrumb-item.active {
	 color: var(--text);
	 cursor: default;
 }
 
 .breadcrumb-item.active:hover {
	 color: var(--text);
 }
 
 .breadcrumb-separator {
	 color: var(--muted);
	 margin: 0 4px;
 }
 
 /* Content sections */
 .content-section {
	 padding: 100px 24px;
	 max-width: 1600px;
	 width: 100%;
	 margin: 0 auto;
	 box-sizing: border-box;
 }
 
 .content-section-no-bottom { padding-top: 40px !important; padding-bottom: 100px !important; }
 .content-section-no-bottom .two-column { margin-bottom: 0; margin-top: 0; }
 .content-section:has(+ .design-banner-2) { padding-bottom: 0; }
 
 .section-title {
	 margin: 0 0 24px 0;
	 font-family: var(--main-font);
	 font-weight: 700;
	 font-size: clamp(32px, 4vw, 48px);
	 letter-spacing: 0.5px;
	 color: var(--text);
	 text-align: center;
 }
 
 .section-description {
	 margin: 0 auto 24px;
	 color: var(--muted);
	 font-size: 18px;
	 line-height: 1.8;
	 max-width: 800px;
	 text-align: center;
 }
 
 /* Two Column Layout */
 .two-column {
	 display: -ms-grid;
	 display: grid;
	 -ms-grid-columns: 1fr 1fr;
	 grid-template-columns: 1fr 1fr;
	 gap: 60px;
	 -webkit-box-align: center;
	 -ms-flex-align: center;
	 align-items: center;
	 margin-top: 60px;
	 width: 100%;
	 max-width: 100%;
	 box-sizing: border-box;
 }
 
 .text-content {
	 width: 100%;
	 max-width: 100%;
	 box-sizing: border-box;
 }
 
 .text-content h3 {
	 margin: 0 0 16px 0;
	 font-family: var(--main-font);
	 font-weight: 700;
	 font-size: 28px;
	 color: var(--text);
 }
 
 .text-content p {
	 margin: 0 0 20px 0;
	 color: var(--muted);
	 line-height: 1.8;
	 font-size: 16px;
 }
 
 .text-content ul {
	 margin: 20px 0;
	 padding-left: 24px;
	 color: var(--muted);
	 line-height: 2;
 }
 
 .text-content li {
	 margin-bottom: 8px;
 }
 
 @media (max-width: 968px) {
	 .two-column {
		 grid-template-columns: 1fr;
		 gap: 40px;
	 }
 }
 
 @media (max-width: 768px) {
	 .two-column {
		 grid-template-columns: 1fr;
		 gap: 30px;
		 width: 100%;
		 max-width: 100%;
	 }
 
	 .text-content {
		 width: 100%;
		 max-width: 100%;
	 }
 }
 
 .info-card {
	 background: var(--card);
	 border: 1px solid var(--card-border);
	 border-radius: var(--radius-lg);
	 padding: 40px 32px;
	 margin-bottom: 32px;
 }
 
 .info-card h2 { margin: 0 0 16px 0; font-size: 24px; color: var(--text); }
 .info-card h3 { margin: 24px 0 12px 0; font-size: 18px; color: var(--text); }
 .info-card ul,
 .info-card ol,
 .info-card .wp-block-list { margin: 12px 0; padding-left: 24px; color: var(--muted); line-height: 1.7; }
 .info-card p { margin: 0 0 12px 0; color: var(--muted); line-height: 1.7; }
 
 .highlight-box {
	 background: rgba(var(--accent-rgb, 59 130 246), 0.08);
	 border: 1px solid var(--card-border);
	 border-radius: var(--radius-md);
	 padding: 20px;
	 margin: 20px 0;
 }
 
 .highlight-box p { margin: 0; color: var(--text); }
 
 .bulk-pricing-block {
	 margin-bottom: 28px;
 }
 
 .bulk-pricing-title {
	 margin: 0 0 12px 0;
	 font-size: 18px;
	 font-weight: 700;
	 color: var(--text);
 }
 
 .bulk-pricing-note {
	 margin: 12px 0 0 0;
	 font-size: 14px;
	 color: var(--muted);
 }
 
 .bulk-pricing-note a {
	 color: var(--accent);
	 text-decoration: none;
 }
 
 .bulk-pricing-note a:hover {
	 text-decoration: underline;
 }

 .template-availability-note {
	 margin-top: 8px !important;
	 color: var(--muted) !important;
	 font-size: 14px;
 }
 
 .pricing-table-wrap {
	 overflow-x: auto;
	 margin: 16px 0;
 }
 
 .pricing-table,
 .pricing-table-wrap table {
	 width: 100%;
	 min-width: 260px;
	 border-collapse: collapse;
	 font-size: 15px;
 }
 
 .pricing-table th,
 .pricing-table td,
 .pricing-table-wrap th,
 .pricing-table-wrap td {
	 padding: 12px 16px;
	 text-align: left;
	 border: 1px solid var(--card-border);
 }
 
 .pricing-table th,
 .pricing-table-wrap th {
	 background: var(--card);
	 font-weight: 700;
	 color: var(--text);
 }
 
 .pricing-table td,
 .pricing-table-wrap td {
	 color: var(--muted);
 }
 
 .pricing-table tbody tr:nth-child(even),
 .pricing-table-wrap tbody tr:nth-child(even) {
	 background: var(--surface-hover);
 }
 
 body.light-mode .pricing-table tbody tr:nth-child(even),
 body.light-mode .pricing-table-wrap tbody tr:nth-child(even) {
	 background: var(--surface-hover);
 }
 
 .cta-button {
	 display: inline-block;
	 padding: 18px 40px;
	 border-radius: var(--radius-md);
	 font-weight: 700;
	 font-size: 16px;
	 letter-spacing: 0.5px;
	 cursor: pointer;
	 border: none;
	 font-family: var(--main-font);
	 text-decoration: none;
	 transition: transform 0.2s, box-shadow 0.2s;
 }
 
 .cta-button:focus {
	 outline: 3px solid var(--accent);
	 outline-offset: 3px;
 }
 
 .cta-primary {
	 background: var(--cta);
	 color: var(--cta-text, #fff);
	 box-shadow: var(--shadow-md);
 }
 
 .cta-primary:hover {
	 transform: scale(1.02);
	 box-shadow: 0 0 24px var(--accent-glow), var(--shadow-md);
 }
 
 .cta-secondary {
	 background: transparent;
	 color: var(--text);
	 border: 2px solid var(--card-border);
	 position: relative;
	 overflow: hidden;
 }
 
 a.cta-secondary::after {
	 content: '';
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 2px;
	 background: var(--accent);
	 transform: translateX(-101%);
	 transition: transform 0.35s ease;
 }
 
 .cta-secondary:hover {
	 border-color: var(--accent);
	 color: var(--accent);
	 background: transparent;
 }
 
 a.cta-secondary:hover::after {
	 transform: translateX(0);
 }

 /* Gutenberg button wrappers keep the existing CTA treatment on the link. */
 .wp-block-button.cta-button {
	 padding: 0;
	 border: 0;
	 border-radius: 0;
	 background: transparent;
	 box-shadow: none;
	 overflow: visible;
 }

 .wp-block-button.cta-button.cta-secondary::after {
	 content: none;
 }

 .wp-block-button.cta-button .wp-block-button__link {
	 display: inline-block;
	 padding: 18px 40px;
	 border-radius: var(--radius-md);
	 font-family: var(--main-font);
	 font-size: 16px;
	 font-weight: 700;
	 letter-spacing: 0.5px;
	 text-decoration: none;
	 transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
 }

 .wp-block-button.cta-primary .wp-block-button__link {
	 background: var(--cta);
	 color: var(--cta-text, #fff);
	 box-shadow: var(--shadow-md);
 }

 .wp-block-button.cta-primary .wp-block-button__link:hover {
	 transform: scale(1.02);
	 box-shadow: 0 0 24px var(--accent-glow), var(--shadow-md);
 }

 .wp-block-button.cta-secondary .wp-block-button__link {
	 border: 2px solid var(--card-border);
	 background: transparent;
	 color: var(--text);
 }

 .wp-block-button.cta-secondary .wp-block-button__link:hover {
	 border-color: var(--accent);
	 color: var(--accent);
 }

 .wp-block-button.cta-button .wp-block-button__link:focus-visible {
	 outline: 3px solid var(--accent);
	 outline-offset: 3px;
 }
 
 /* FAQ (contact + other pages) */
 .faq-section {
	 max-width: 1600px;
	 margin: 0 auto;
	 padding: 30px 20px 60px;
 }
 
 .faq-card {
	 background: var(--card);
	 border: 1px solid var(--card-border);
	 border-radius: var(--radius-lg);
	 padding: 48px 40px;
 }
 
 .faq-title {
	 font-size: clamp(24px, 3vw, 32px);
	 font-weight: 700;
	 color: var(--text);
	 margin: 0 0 12px;
	 text-align: center;
 }
 
 .faq-subtitle {
	 font-size: 16px;
	 color: var(--muted);
	 text-align: center;
	 margin: 0 0 32px;
 }
 
 .faq-list {
	 max-width: 900px;
	 margin: 0 auto;
 }
 
 .faq-item {
	 border-bottom: 1px solid var(--card-border);
 }
 
 .faq-item:last-child {
	 border-bottom: none;
 }
 
 .faq-question {
	 width: 100%;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding: 20px 0;
	 background: transparent;
	 border: none;
	 color: var(--text);
	 font-size: 16px;
	 font-weight: 600;
	 text-align: left;
	 cursor: pointer;
	 font-family: var(--main-font);
 }
 
 .faq-question:hover {
	 color: var(--accent);
 }
 
 .faq-question svg {
	 flex-shrink: 0;
	 transition: transform 0.3s;
 }
 
 .faq-item.open .faq-question svg {
	 transform: rotate(180deg);
 }
 
 .faq-answer {
	 max-height: 0;
	 overflow: hidden;
	 transition: max-height 0.3s ease;
 }
 
 .faq-item.open .faq-answer {
	 max-height: 500px;
 }
 
 .faq-answer p {
	 margin: 0;
	 padding: 0 0 20px;
	 font-size: 15px;
	 color: var(--muted);
	 line-height: 1.7;
 }
 
 @media (max-width: 768px) {
	 .faq-card {
		 padding: 32px 24px;
	 }
 }
 
 .container {
	 max-width: 900px;
	 margin: 0 auto;
	 padding: 100px 24px 60px;
 }
 
 .container h1 {
	 font-family: var(--main-font);
	 font-weight: 700;
	 font-size: clamp(28px, 4vw, 36px);
	 color: var(--text);
	 margin: 0 0 24px;
 }
 
 .container h2 {
	 font-family: var(--main-font);
	 font-weight: 700;
	 font-size: 22px;
	 color: var(--text);
	 margin: 32px 0 12px;
 }
 
 .container p {
	 color: var(--muted);
	 line-height: 1.8;
	 margin: 0 0 16px;
 }
 
 .container ul,
 .container ol {
	 color: var(--muted);
	 line-height: 1.8;
	 margin: 0 0 16px;
	 padding-left: 24px;
 }
 
 .container li {
	 margin-bottom: 8px;
 }
 
 .last-updated {
	 font-size: 13px;
	 color: var(--muted);
	 margin-bottom: 24px;
 }
 
 /* Footer */
 .footer {
	 margin-top: 60px;
	 padding: 60px 24px 40px;
	 border-top: 1px solid var(--card-border);
	 background: var(--surface-hover);
 }
 
 body.light-mode .footer {
	 background: var(--surface-hover);
 }
 
 .footer-content {
	 max-width: 1600px;
	 margin: 0 auto;
 }
 
 .footer-logo {
	 text-align: center;
	 margin-bottom: 40px;
 }
 
 .footer-logo a {
	 display: block;
 }
 
 .footer-logo img {
	 height: 28px;
	 width: auto;
	 opacity: 0.9;
	 transition: opacity 0.2s ease;
 }
 
 .footer-logo img:hover {
	 opacity: 1;
 }
 
 .footer-headline {
	 margin: 12px 0 0;
	 font-size: 14px;
	 color: var(--muted);
	 line-height: 1.6;
	 max-width: 480px;
	 display: inline-block;
 }
 
 .footer-grid {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 40px;
	 margin-bottom: 40px;
 }
 
 .footer-section {
	 padding: 0;
 }
 
 .footer-section h3 {
	 margin: 0 0 16px 0;
	 font-size: 16px;
	 font-weight: 700;
	 color: var(--text);
 }
 
 .footer-section p,
 .footer-section a {
	 margin: 8px 0;
	 color: var(--muted);
	 font-size: 14px;
	 text-decoration: none;
	 display: block;
	 line-height: 1.6;
 }
 
 .footer-section a:hover {
	 color: var(--accent);
 }
 
 .footer-text {
	 color: var(--muted);
	 font-size: 14px;
	 margin: 0;
	 text-align: center;
	 padding-top: 20px;
	 border-top: 1px solid var(--card-border);
 }
 
 @media (max-width: 980px) {
	 .breadcrumbs { padding: 18px 20px; }
	 .content-section { padding: 45px 20px; }
 }
 
 @media (max-width: 768px) {
	 .breadcrumbs { padding: 12px 16px; }
	 .content-section { padding: 60px 16px; }
	 .footer-grid {
		 grid-template-columns: 1fr;
		 gap: 30px;
	 }
	 .footer { padding: 40px 16px 30px; }
 }
 
 /* Focus styles for interactive elements */
 .mobile-menu-toggle:focus-visible,
 .faq-question:focus-visible,
 .breadcrumb-item:focus-visible,
 .footer-section a:focus-visible {
	 outline: 2px solid var(--accent);
	 outline-offset: 2px;
 }
 
 @media (prefers-reduced-motion: reduce) {
	 *, *::before, *::after { animation: none !important; transition: none !important; }
 }
 
 /* Blog single: layout shell always from site.css (bpc-blog adds typography/details) */
 body.single-post #main.blog-single-page {
	 max-width: 1200px;
	 margin-left: auto;
	 margin-right: auto;
	 padding: 40px 24px 80px;
	 box-sizing: border-box;
 }