/* Blog styles. Sits on the site's dark sections (#050505 background, gold #D7BA63 accent). */
.fwb-hero { padding: 150px 0 40px; text-align: center; }
.fwb-hero h1 { color: var(--primary-500); font-size: clamp(30px, 5vw, 52px); line-height: 1.15; margin-bottom: 14px; }
.fwb-hero p { color: rgba(255,255,255,.75); max-width: 720px; margin: 0 auto; font-size: 18px; }

.fwb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; padding-bottom: 40px; }
.fwb-card { display: flex; flex-direction: column; background: #111; border: 1px solid rgba(215,186,99,.18); border-radius: 12px; padding: 26px; transition: border-color .2s, transform .2s; height: 100%; }
.fwb-card:hover { border-color: var(--primary-500); transform: translateY(-3px); }
.fwb-card h2 { font-size: 21px; line-height: 1.35; margin: 12px 0 10px; }
.fwb-card h2 a { color: #fff; text-decoration: none; }
.fwb-card h2 a:hover { color: var(--primary-500); }
.fwb-card p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.6; flex-grow: 1; }
.fwb-badge { display: inline-block; align-self: flex-start; font-size: 13px; font-weight: 600; letter-spacing: .3px; color: #050505; background: var(--primary-500); border-radius: 30px; padding: 2px 12px; text-decoration: none; }
.fwb-meta { color: rgba(255,255,255,.55); font-size: 14px; }
.fwb-meta span + span::before { content: "\00b7"; margin: 0 8px; }
.fwb-more { color: var(--primary-500); font-weight: 600; font-size: 15px; text-decoration: none; margin-top: 8px; }
.fwb-empty { color: rgba(255,255,255,.7); text-align: center; padding: 40px 0 80px; }

.fwb-pager { display: flex; justify-content: center; gap: 10px; padding: 10px 0 60px; flex-wrap: wrap; }
.fwb-pager a, .fwb-pager span { color: #fff; border: 1px solid rgba(215,186,99,.35); border-radius: 8px; padding: 6px 14px; text-decoration: none; }
.fwb-pager .current { background: var(--primary-500); color: #050505; border-color: var(--primary-500); }

/* Single article */
.fwb-article { max-width: 800px; margin: 0 auto; padding: 140px 0 60px; }
.fwb-crumbs { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.fwb-crumbs a { color: rgba(255,255,255,.75); text-decoration: none; }
.fwb-crumbs a:hover { color: var(--primary-500); }
.fwb-article h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); line-height: 1.2; margin: 14px 0 16px; }
.fwb-article .fwb-meta { margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fwb-body { color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.8; }
.fwb-body h2 { color: var(--primary-500); font-size: 28px; margin: 42px 0 16px; line-height: 1.3; }
.fwb-body h3 { color: #fff; font-size: 22px; margin: 30px 0 12px; }
.fwb-body p, .fwb-body ul, .fwb-body ol { margin-bottom: 20px; }
.fwb-body ul, .fwb-body ol { padding-left: 24px; }
.fwb-body ul li { list-style: disc; }
.fwb-body ol li { list-style: decimal; }
.fwb-body li { margin-bottom: 8px; color: rgba(255,255,255,.85); }
.fwb-body a { color: var(--primary-500); text-decoration: underline; }
.fwb-body strong { color: #fff; }
.fwb-body blockquote { border-left: 3px solid var(--primary-500); padding: 6px 0 6px 18px; margin: 24px 0; color: rgba(255,255,255,.75); font-style: italic; }
.fwb-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 16px; display: block; overflow-x: auto; }
.fwb-body th, .fwb-body td { border: 1px solid rgba(255,255,255,.15); padding: 10px 12px; text-align: left; }
.fwb-body th { color: var(--primary-500); background: #111; }

.fwb-faq { margin-top: 50px; }
.fwb-faq h2 { color: var(--primary-500); font-size: 28px; margin-bottom: 18px; }
.fwb-faq details { background: #111; border: 1px solid rgba(215,186,99,.18); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.fwb-faq summary { color: #fff; font-weight: 600; cursor: pointer; font-size: 18px; }
.fwb-faq details p { color: rgba(255,255,255,.8); margin: 12px 0 0; font-size: 17px; line-height: 1.7; }

.fwb-tags { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 8px; }
.fwb-tags span { font-size: 14px; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 2px 12px; }

.fwb-related { max-width: 1100px; margin: 0 auto; padding-bottom: 40px; }
.fwb-related > h2 { color: #fff; font-size: 26px; margin-bottom: 22px; text-align: center; }

.fwb-preview-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 99999; background: #c0392b; color: #fff; text-align: center; padding: 8px; font-size: 15px; }
.fwb-preview-bar a { color: #fff; text-decoration: underline; }

@media (max-width: 767px) {
  .fwb-hero { padding-top: 110px; }
  .fwb-article { padding-top: 110px; }
  .fwb-body { font-size: 17px; }
  .fwb-body h2 { font-size: 24px; }
}

/* Trust pages (reviews, legit, official channels) */
.tr-page { max-width: 860px; margin: 0 auto; padding: 140px 0 60px; }
.tr-page h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); line-height: 1.2; margin: 12px 0 14px; }
.tr-lead { color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.7; margin-bottom: 30px; }
.tr-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin: 24px 0 30px; }
.tr-fact { background: #111; border: 1px solid rgba(215,186,99,.2); border-radius: 12px; padding: 16px 18px; }
.tr-fact .l { color: var(--primary-500); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.tr-fact .v { color: #fff; font-size: 16px; line-height: 1.5; }
.tr-fact .v a { color: #fff; }
.tr-box { border-radius: 12px; padding: 20px 22px; margin: 24px 0; }
.tr-ok { background: rgba(46,204,113,.08); border: 1px solid rgba(46,204,113,.35); }
.tr-warn { background: rgba(255,92,92,.08); border: 1px solid rgba(255,92,92,.35); }
.tr-box h3 { font-size: 20px; margin-bottom: 10px; }
.tr-ok h3 { color: #2ecc71; } .tr-warn h3 { color: #ff5c5c; }
.tr-box ul { padding-left: 22px; margin: 0; } .tr-box li { color: rgba(255,255,255,.85); margin-bottom: 8px; list-style: disc; line-height: 1.6; }
.tr-quote { background: #111; border-left: 3px solid var(--primary-500); border-radius: 0 12px 12px 0; padding: 18px 22px; margin-bottom: 16px; }
.tr-quote p { color: rgba(255,255,255,.88); font-size: 17px; line-height: 1.7; margin: 0 0 10px; }
.tr-quote footer { color: rgba(255,255,255,.55); font-size: 14px; }
.tr-cta { display: inline-block; background: var(--primary-500); color: #050505 !important; font-weight: 700; border-radius: 8px; padding: 12px 22px; text-decoration: none; margin: 6px 8px 6px 0; }
.tr-cta.alt { background: transparent; color: var(--primary-500) !important; border: 1px solid var(--primary-500); }
.tr-steps, .fwb-body .tr-steps { counter-reset: s; list-style: none; padding: 0; }
.fwb-body .tr-steps li, .tr-steps li { list-style: none; counter-increment: s; position: relative; padding-left: 46px; margin-bottom: 14px; color: rgba(255,255,255,.85); line-height: 1.65; }
.tr-steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--primary-500); color: #050505; font-weight: 700; text-align: center; line-height: 32px; }
.tr-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tr-links a { color: #fff; text-decoration: none; font-size: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 6px 14px; }
.tr-links a:hover { border-color: var(--primary-500); color: var(--primary-500); }
@media (max-width: 767px) { .tr-page { padding-top: 110px; } }
.tr-videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin: 20px 0 30px; }
.tr-video { position: relative; padding-top: 56.25%; background: #111; border-radius: 12px; overflow: hidden; border: 1px solid rgba(215,186,99,.2); }
.tr-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
