/* ═══════════════════════════════════════════════
   BLOG POST — Pixel Service  |  2026-05-06
   Єдиний файл: layout + blocks + related + mobile
   ═══════════════════════════════════════════════ */

/* === ГЛОБАЛЬНИЙ ФІКС === */
body { background: #fff !important; }

/* ── ХЛІБНІ КРИХТИ ───────────────────────────── */
.bp-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #9ca3af;
    margin-bottom: 14px; flex-wrap: wrap;
}
.bp-breadcrumb a { color: #6b7280; text-decoration: none; }
.bp-breadcrumb a:hover { color: #477AF6; }
.bp-breadcrumb-sep { color: #d1d5db; }
.bp-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: #477AF6;
    text-decoration: none; margin-bottom: 16px;
}
.bp-back:hover { text-decoration: underline; }
.bp-back svg { flex-shrink: 0; }
.bp-preview {
    display: inline-flex; padding: 4px 12px;
    border-radius: 99px; background: #fff6d7;
    color: #8a6200; font-size: 11px; font-weight: 700;
    margin-bottom: 10px;
}

/* ── ARTICLE HERO ─────────────────────────────── */
.article-hero {
    background: #fff;
    padding: calc(var(--topbar-h,0px) + var(--nav-h,72px) + 36px) 0 0;
}
.article-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-meta-row {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 16px; font-size: 14px; color: #9ca3af;
    align-items: center;
}
.article-category-badge {
    background: #477AF6; color: #fff;
    padding: 4px 12px; border-radius: 4px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
}
.article-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700; line-height: 1.15;
    margin: 0 0 16px; color: #111827;
    letter-spacing: -.02em;
}
.article-excerpt {
    font-size: 18px; color: #4b5563;
    line-height: 1.6; margin: 0 0 32px;
}

/* ── COVER IMAGE ──────────────────────────────── */
.article-cover-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-cover-image {
    width: 100%; height: 420px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.article-cover-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* ── ARTICLE CONTENT ──────────────────────────── */
.article-main-content {
    background: #fff;
    padding: 48px 0 0;
}
.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 17px;
    line-height: 1.85;
    color: #1f2937;
}
.article-content-wrapper p { margin: 0 0 16px; }
.article-content-wrapper h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700; margin: 40px 0 12px;
    color: #0d1933; letter-spacing: -.02em;
    padding-top: 24px; border-top: 1px solid #f3f4f6;
}
.article-content-wrapper h2:first-child {
    padding-top: 0; border-top: none;
}
.article-content-wrapper h3 {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700; margin: 32px 0 10px; line-height: 1.2;
    color: #111827;
}
.article-content-wrapper ul,
.article-content-wrapper ol { margin: 0 0 16px; padding-left: 24px; }
.article-content-wrapper li { margin-bottom: 8px; }
.article-content-wrapper a { color: #477AF6; }
.article-content-wrapper img {
    max-width: 100%;
    display: block; margin: 24px auto;
}
.article-content-wrapper blockquote {
    padding: 14px 18px; border-left: 4px solid #477AF6;
    background: #f4f8ff; border-radius: 0 12px 12px 0;
    margin: 0 0 16px; font-style: italic;
}
.article-content-wrapper strong { font-weight: 700; color: #111827; }
.article-content-wrapper figure { margin: 24px 0; }
.article-content-wrapper figcaption {
    text-align: center; font-size: 13px;
    color: #9ca3af; margin-top: 8px;
}

/* ── SHARE WRAPPER ────────────────────────────── */
.article-share-wrapper {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 16px 24px 48px;
    border-top: 1px solid #f3f4f6;
}

/* ── SHARE BUTTONS ────────────────────────────── */
.bp-share { display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch; }
.bp-share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 0 16px; height: 42px; border-radius: 10px;
    border: 1px solid #e5e7eb; font-size: 13px; font-weight: 600;
    color: #374151; text-decoration: none; background: #fff;
    cursor: pointer; transition: border-color .18s;
    font-family: inherit; white-space: nowrap;
}
.bp-share-btn:hover { border-color: #c5d3f5; color: #3557d6; }

/* ── BOTTOM CTA ───────────────────────────────── */
.bp-bottom-cta {
    background: #477AF6; border-radius: 20px; padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.bp-bottom-cta::before {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px; background: rgba(255,255,255,.08);
    border-radius: 50%; pointer-events: none;
}
.bp-bottom-cta h2 {
    font-size: clamp(20px,2.5vw,30px); font-weight: 800;
    color: #fff; margin: 0 0 10px; line-height: 1.1;
}
.bp-bottom-cta p {
    font-size: 15px; color: rgba(255,255,255,.78);
    margin: 0; line-height: 1.6; max-width: 420px;
}
.bp-bottom-btns {
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0; min-width: 210px;
}
.bp-bottom-btn1 {
    display: flex; align-items: center; justify-content: center;
    background: #fff; color: #477AF6; font-size: 14px; font-weight: 600;
    height: 48px; padding: 0 24px; border-radius: 10px; border: none;
    cursor: pointer; font-family: inherit; width: 100%; box-sizing: border-box;
}
.bp-bottom-btn2 {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255,255,255,.12); color: #fff; font-size: 14px; font-weight: 600;
    height: 48px; padding: 0 24px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.25); text-decoration: none;
    width: 100%; box-sizing: border-box;
}
.bp-bottom-btn2:hover { color: #fff; background: rgba(255,255,255,.2); }

/* ── INLINE CTA (shortcodes + block editor) ───── */
.bp-inline-cta {
    border-radius: 14px; padding: 20px 24px; margin: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: nowrap;
}
.bp-inline-cta-blue  { background: #477AF6; }
.bp-inline-cta-light { background: #f0f3ff; border: 1px solid #c7d5fd; }
.bp-inline-cta-title { font-size: 17px; font-weight: 800; line-height: 1.2; margin-bottom: 5px; }
.bp-inline-cta-blue  .bp-inline-cta-title { color: #fff; }
.bp-inline-cta-light .bp-inline-cta-title { color: #0d1933; }
.bp-inline-cta-desc  { font-size: 13px; line-height: 1.55; }
.bp-inline-cta-blue  .bp-inline-cta-desc { color: rgba(255,255,255,.78); }
.bp-inline-cta-light .bp-inline-cta-desc { color: #374151; }
.bp-inline-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 48px; padding: 0 22px; border-radius: 10px;
    font-size: 14px; font-weight: 600; white-space: nowrap;
    flex-shrink: 0; border: none; cursor: pointer;
    font-family: inherit; box-sizing: border-box; min-width: 160px;
}
.bp-inline-cta-blue  .bp-inline-cta-btn { background: #fff; color: #477AF6; }
.bp-inline-cta-light .bp-inline-cta-btn { background: #477AF6; color: #fff; }

/* ── LEAD / NOTE TEXT ─────────────────────────── */
.bp-lead-text  { font-size: 20px; color: #4b5563; font-weight: 500; line-height: 1.6; margin-bottom: 24px; }
.bp-note-text  { font-size: 14px; color: #9ca3af; margin-bottom: 16px; }

/* ── NOTE / ACCENT BLOCK (blog-* — генерується блок-редактором) */
.blog-note-block {
    padding: 18px 22px; border-radius: 12px; margin: 28px 0;
    background: rgba(59,110,240,.06); border-left: 4px solid #477AF6;
}
.blog-note-block h3 {
    font-size: 16px; font-weight: 700; margin: 8px 0 6px; color: #0d1933;
}
.blog-note-block p { margin: 0; line-height: 1.7; font-size: 16px; }
.blog-note-badge {
    display: inline-flex; align-items: center;
    padding: 3px 10px; border-radius: 20px;
    background: #477AF6; color: #fff;
    font-size: 12px; font-weight: 700;
}
/* Note variants */
.blog-note-block--tip {
    background: rgba(52,199,89,.06); border-left-color: #34c759;
}
.blog-note-block--tip .blog-note-badge { background: #34c759; }
.blog-note-block--warning {
    background: rgba(251,191,36,.06); border-left-color: #f59e0b;
}
.blog-note-block--warning .blog-note-badge { background: #f59e0b; color: #1f2937; }

/* old bp-note-block aliases */
.bp-note-block       { padding: 20px 24px; border-radius: 10px; margin: 32px 0; }
.bp-note-block p     { margin: 0; line-height: 1.7; }
.bp-note-header      { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 15px; }
.bp-note-info        { background: rgba(59,110,240,.06); border-left: 4px solid #477AF6; }
.bp-note-tip         { background: rgba(52,199,89,.06);  border-left: 4px solid #34c759; }
.bp-note-warning     { background: rgba(251,191,36,.06); border-left: 4px solid #fbbf24; }

/* ── CHECKLIST (blog-* classes) ───────────────── */
.blog-checklist { list-style: none; padding: 0; margin: 20px 0; }
.blog-checklist li {
    padding: 8px 0 8px 32px; position: relative;
    border-bottom: 1px solid #f3f4f6; line-height: 1.6; font-size: 16px;
}
.blog-checklist li:last-child { border-bottom: none; }
.blog-checklist li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 18px; height: 18px; border-radius: 50%; background: #dcfce7;
}
.blog-checklist li::after {
    content: ''; position: absolute; left: 5px; top: 14px;
    width: 8px; height: 5px;
    border-left: 2px solid #16a34a; border-bottom: 2px solid #16a34a;
    transform: rotate(-45deg);
}

/* old bp-checklist */
.bp-checklist          { list-style: none; padding: 0; margin: 24px 0; }
.bp-checklist li       { padding: 8px 0 8px 32px; position: relative; border-bottom: 1px solid #f3f4f6; line-height: 1.6; }
.bp-checklist li:last-child { border-bottom: none; }
.bp-checklist li::before { content: ''; position: absolute; left: 0; top: 10px; width: 18px; height: 18px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; }
.bp-checklist li::after  { content: ''; position: absolute; left: 5px; top: 14px; width: 8px; height: 5px; border-left: 2px solid #16a34a; border-bottom: 2px solid #16a34a; transform: rotate(-45deg); }

/* ── BUTTON BLOCKS (blog-* classes) ──────────── */
.blog-button-row { margin: 24px 0; text-align: center; }
.blog-inline-button {
    display: inline-block; padding: 12px 32px;
    border-radius: 10px; font-weight: 600; font-size: 15px;
    text-decoration: none; background: #477AF6; color: #fff;
    transition: transform .15s, box-shadow .15s;
}
.blog-inline-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(71,122,246,.3);
}
.blog-inline-button.blog-inline-button--outline,
.blog-inline-button--outline {
    background: transparent; color: #477AF6;
    border: 2px solid #477AF6;
}
.blog-inline-button--outline:hover { background: #477AF6; color: #fff; }

/* old bp-button aliases */
.bp-button-row    { margin: 32px 0; text-align: center; }
.bp-button        { display: inline-block; padding: 12px 32px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: transform .15s,box-shadow .15s; }
.bp-button-primary{ background: #477AF6; color: #fff; }
.bp-button-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(71,122,246,.3); }
.bp-button-outline{ background: transparent; color: #477AF6; border: 2px solid #477AF6; }
.bp-button-outline:hover { background: #477AF6; color: #fff; }

/* ── IMAGE BLOCK ──────────────────────────────── */
.bp-image-block        { margin: 32px 0; }
.bp-image-block img    { width: 100%; border-radius: 8px; display: block; }
.bp-image-block figcaption { margin-top: 8px; font-size: 14px; color: #9ca3af; text-align: center; }

/* ── QUOTE ────────────────────────────────────── */
.bp-quote          { border-left: 4px solid #477AF6; padding: 16px 24px; margin: 32px 0; background: #f0f3ff; border-radius: 0 8px 8px 0; }
.bp-quote p        { margin: 0; font-style: italic; color: #374151; line-height: 1.7; }
.bp-quote cite     { display: block; margin-top: 12px; font-size: 14px; color: #9ca3af; font-style: normal; }

/* ── DIVIDER ──────────────────────────────────── */
.bp-divider        { border: none; border-top: 2px solid #e5e7eb; margin: 40px 0; }
.bp-divider-text   { text-align: center; margin: 40px 0; position: relative; }
.bp-divider-text::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; border-top: 2px solid #e5e7eb; }
.bp-divider-text span { background: #fff; padding: 0 16px; position: relative; z-index: 1; color: #9ca3af; font-size: 14px; font-weight: 600; }

/* ── OLD CTA BLOCK STYLES ─────────────────────── */
.bp-cta-blue   { background: linear-gradient(135deg,#477AF6,#3461e8); color: #fff; padding: 32px; border-radius: 14px; text-align: center; margin: 32px 0; }
.bp-cta-blue h3{ margin: 0 0 10px; color: #fff; font-size: 20px; }
.bp-cta-blue p { margin: 0 0 18px; opacity: .85; line-height: 1.6; }
.bp-cta-btn    { display: inline-block; padding: 12px 32px; border-radius: 10px; border: none; background: #fff; color: #477AF6; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .15s; }
.bp-cta-btn:hover { transform: translateY(-2px); }
.bp-cta-light  { background: #f9fafb; border: 2px solid #e5e7eb; padding: 32px; border-radius: 14px; text-align: center; margin: 32px 0; }
.bp-cta-light h3 { margin: 0 0 10px; color: #0d1933; font-size: 20px; }
.bp-cta-light p  { margin: 0 0 18px; color: #6b7280; line-height: 1.6; }
.bp-cta-btn-light { display: inline-block; padding: 12px 32px; border-radius: 10px; border: none; background: #477AF6; color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .15s; }
.bp-cta-btn-light:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(71,122,246,.3); }

/* ── RELATED ARTICLES ─────────────────────────── */
.related-section,
.related-articles {
    background: #f9fafb !important;
    padding: clamp(48px,6vw,80px) 0;
    border-top: 1px solid #e5e7eb;
}
.related-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.related-header    { text-align: center; margin-bottom: clamp(28px,4vw,48px); }
.related-title     { font-size: clamp(22px,3vw,32px); font-weight: 800; color: #0d1933; margin: 0 0 8px; letter-spacing: -.02em; }
.related-subtitle  { font-size: 15px; color: #6b7280; margin: 0; }
.related-grid      { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.rel-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    overflow: hidden; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,110,240,.12); border-color: #477AF6; }
.rel-card-img     { width: 100%; height: 190px; overflow: hidden; background: #f3f4f6; flex-shrink: 0; }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.rel-card:hover .rel-card-img img { transform: scale(1.04); }
.rel-card-img-ph  { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #d1d5db; background: linear-gradient(135deg,#f0f3ff,#e8ecf8); }
.rel-card-img-ph svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.rel-card-body    { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.rel-card-cat     { display: inline-block; background: rgba(59,110,240,.08); color: #477AF6; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: .03em; margin-bottom: 10px; align-self: flex-start; }
.rel-card-title   { font-size: 17px; font-weight: 700; line-height: 1.35; color: #0d1933; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rel-card-excerpt { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.rel-card-meta    { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #9ca3af; border-top: 1px solid #f3f4f6; padding-top: 14px; margin-top: 16px; }
.rel-card-meta svg{ width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.rel-card-meta-item { display: flex; align-items: center; gap: 4px; }

/* ── HIDE SIDEBAR ─────────────────────────────── */
.bp-sidebar, .sidebar-cta, .sidebar-related, aside.sidebar { display: none !important; }

/* ── MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
    .related-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .bp-inline-cta { flex-direction: column; align-items: stretch; gap: 12px; padding: 18px; }
    .bp-inline-cta-btn { width: 100%; min-width: unset; }
    .bp-bottom-cta { flex-direction: column; align-items: stretch; padding: 24px; gap: 20px; }
    .bp-bottom-btns { min-width: unset; }
    .bp-share { flex-direction: column; }
    .bp-share-btn { width: 100%; height: 48px; }
}

@media (max-width: 640px) {
    .bp-breadcrumb { display: none; }
    .article-hero  { padding-top: calc(var(--nav-h,64px) + 16px); }
    .article-title { font-size: 26px; }
    .article-excerpt { font-size: 16px; }
    .article-cover-image { height: 220px; border-radius: 12px; }
    .article-cover-wrapper,
    .article-hero-container,
    .article-content-wrapper { padding-left: 16px !important; padding-right: 16px !important; }
    .article-share-wrapper { padding-left: 16px; padding-right: 16px; }
    .article-main-content  { padding-top: 32px; }
    .article-content-wrapper { font-size: 16px; }
    .blog-note-block  { padding: 14px 16px; }
    .bp-inline-cta    { padding: 16px; }
    .bp-bottom-cta    { padding: 20px; }
    .related-grid     { grid-template-columns: 1fr; gap: 14px; }
    .rel-card-img     { height: 170px; }
    .rel-card-body    { padding: 16px 18px; }
}

/* ── NEW BLOCK SYSTEM (b-* classes — matches blog-prototype.html) ── */

.b-text { font-size:17px; line-height:1.85; color:#111827; }
.b-text-lead { font-size:20px; line-height:1.7; color:#4b5563; font-weight:500; margin-bottom:24px; }
.b-text-small { font-size:14px; line-height:1.75; color:#9ca3af; margin-bottom:16px; }
.b-text strong { color:#111827; font-weight:600; }

.b-h2 { font-size:26px; font-weight:700; line-height:1.3; color:#111827; margin-top:48px; margin-bottom:16px; letter-spacing:-.02em; }
.b-h3 { font-size:22px; font-weight:700; line-height:1.3; color:#111827; margin-top:36px; margin-bottom:12px; letter-spacing:-.02em; }
.b-h2-accent { font-size:26px; font-weight:700; line-height:1.3; color:#3b6ef0; margin-top:48px; margin-bottom:16px; padding-left:20px; border-left:4px solid #3b6ef0; letter-spacing:-.02em; }
.b-h2-numbered { font-size:26px; font-weight:700; line-height:1.3; color:#111827; margin-top:48px; margin-bottom:16px; display:flex; align-items:center; gap:12px; letter-spacing:-.02em; }
.b-h2-num { font-size:20px; font-weight:700; color:#3b6ef0; min-width:36px; }

.b-image { border-radius:12px; overflow:hidden; margin-bottom:24px; }
.b-image img { width:100%; height:auto; display:block; }
.b-image-bordered img { border:3px solid #e5e7eb; }
.b-image-fullwidth { margin-left:-24px; margin-right:-24px; border-radius:0; }
.b-image-fullwidth img { border-radius:0; }
.b-image-gallery { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:24px; }
.b-image-gallery img { width:100%; height:200px; object-fit:cover; border-radius:10px; display:block; }
.b-image-caption { font-size:12.5px; color:#9ca3af; text-align:center; margin-top:10px; line-height:1.5; }

.b-quote { border-left:4px solid #3b6ef0; padding:18px 24px; background:#f9fafb; border-radius:0 10px 10px 0; margin-bottom:24px; }
.b-quote-text { font-size:19px; font-style:italic; line-height:1.65; color:#4b5563; }
.b-quote-author { margin-top:12px; font-size:13px; color:#9ca3af; }
.b-quote-decorative { position:relative; padding:28px 24px 24px; background:#f9fafb; border-radius:12px; margin-bottom:24px; }
.b-quote-decorative::before { content:'\201C'; position:absolute; top:8px; left:16px; font-size:56px; line-height:1; color:#3b6ef0; opacity:.25; font-family:Georgia,serif; }
.b-quote-decorative .b-quote-text { padding-left:28px; }

.b-accent { padding:18px 22px; border-radius:0 10px 10px 0; display:flex; align-items:flex-start; gap:14px; margin-bottom:24px; }
.b-accent-info { background:rgba(59,110,240,.08); border-left:4px solid #3b6ef0; }
.b-accent-warning { background:rgba(245,158,11,.1); border-left:4px solid #f59e0b; }
.b-accent-tip { background:rgba(34,197,94,.1); border-left:4px solid #22c55e; }
.b-accent-danger { background:rgba(239,68,68,.1); border-left:4px solid #ef4444; }
.b-accent-icon { width:22px; height:22px; flex-shrink:0; margin-top:1px; }
.b-accent-info .b-accent-icon { color:#3b6ef0; }
.b-accent-warning .b-accent-icon { color:#f59e0b; }
.b-accent-tip .b-accent-icon { color:#22c55e; }
.b-accent-danger .b-accent-icon { color:#ef4444; }
.b-accent-label { font-size:13px; font-weight:700; margin-bottom:6px; }
.b-accent-info .b-accent-label { color:#2563eb; }
.b-accent-warning .b-accent-label { color:#b45309; }
.b-accent-tip .b-accent-label { color:#16a34a; }
.b-accent-danger .b-accent-label { color:#dc2626; }
.b-accent-text { font-size:15.5px; line-height:1.65; color:#111827; }

.b-checklist { list-style:none; padding:0; margin-bottom:24px; }
.b-checklist li { display:flex; align-items:flex-start; gap:12px; padding:11px 0; border-bottom:1px solid #e5e7eb; }
.b-checklist li:last-child { border-bottom:none; }
.check-icon { width:24px; height:24px; border-radius:50%; background:#22c55e; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.check-icon svg { width:13px; height:13px; color:#fff; }
.b-checklist-text { font-size:16px; line-height:1.6; color:#111827; padding-top:2px; }
.b-checklist-num li { display:flex; align-items:flex-start; gap:14px; }
.num-badge { width:28px; height:28px; border-radius:7px; background:#3b6ef0; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:13px; font-weight:700; color:#fff; margin-top:1px; }
.num-title { font-size:15.5px; font-weight:600; color:#111827; margin-bottom:3px; }
.num-desc { font-size:14px; color:#9ca3af; line-height:1.5; }

.b-btn-wrap { display:flex; justify-content:center; margin-bottom:24px; }
.b-btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:9px; font-size:15.5px; font-weight:600; cursor:pointer; transition:all .2s; border:2px solid transparent; text-decoration:none; }
.b-btn:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,.12); }
.b-btn-primary { background:#3b6ef0; color:#fff; border-color:#3b6ef0; }
.b-btn-primary:hover { box-shadow:0 8px 20px rgba(59,110,240,.35); }
.b-btn-outline { background:transparent; color:#3b6ef0; border-color:#3b6ef0; }
.b-btn-green { background:#22c55e; color:#fff; border-color:#22c55e; }
.b-btn-green:hover { box-shadow:0 8px 20px rgba(34,197,94,.35); }

.b-divider { height:2px; background:#e5e7eb; border-radius:2px; margin:32px 0; border:none; }
.b-divider-thick { height:4px; background:#3b6ef0; border-radius:2px; margin:32px 0; }
.b-divider-dotted { height:0; border-top:2px dotted #e5e7eb; margin:32px 0; }
.b-divider-text { display:flex; align-items:center; gap:16px; margin:32px 0; }
.b-divider-text::before,.b-divider-text::after { content:''; flex:1; height:2px; background:#e5e7eb; }
.b-divider-text span { font-size:12px; font-weight:600; color:#9ca3af; text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }

.b-cta-blue { background:linear-gradient(135deg,#3b6ef0 0%,#5b8ef8 100%); border-radius:16px; padding:40px 36px; text-align:center; color:#fff; margin-bottom:32px; }
.b-cta-blue-title { font-size:22px; font-weight:700; margin-bottom:10px; letter-spacing:-.015em; }
.b-cta-blue-desc { font-size:15.5px; opacity:.88; line-height:1.6; margin-bottom:24px; max-width:480px; margin-left:auto; margin-right:auto; }
.b-cta-blue-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-btn-white { background:#fff; color:#3b6ef0; padding:13px 28px; border-radius:9px; font-weight:600; font-size:15px; display:inline-flex; align-items:center; gap:8px; transition:all .2s; border:none; cursor:pointer; font-family:inherit; text-decoration:none; }
.cta-btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,.15); color:#3b6ef0; }
.cta-btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.6); padding:11px 28px; border-radius:9px; font-weight:600; font-size:15px; display:inline-flex; align-items:center; gap:8px; transition:all .2s; text-decoration:none; }
.cta-btn-outline-white:hover { background:rgba(255,255,255,.15); border-color:#fff; color:#fff; }

.b-cta-light { background:#f9fafb; border:2px solid #e5e7eb; border-radius:16px; padding:36px; text-align:center; margin-bottom:32px; }
.b-cta-light-title { font-size:22px; font-weight:700; color:#111827; margin-bottom:10px; letter-spacing:-.015em; }
.b-cta-light-desc { font-size:15.5px; color:#4b5563; line-height:1.6; margin-bottom:24px; max-width:460px; margin-left:auto; margin-right:auto; }

.b-where { border:2px solid #e5e7eb; border-radius:14px; overflow:hidden; margin-bottom:32px; }
.b-where-map { width:100%; height:300px; background:#e5e7eb; }
.b-where-map iframe { width:100%; height:100%; border:none; display:block; }
.b-where-footer { padding:20px 24px; display:flex; align-items:flex-start; gap:16px; background:#fff; }
.where-icon { width:44px; height:44px; background:#3b6ef0; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.where-icon svg { color:#fff; width:22px; height:22px; }
.where-name { font-size:15.5px; font-weight:700; color:#111827; margin-bottom:4px; }
.where-address { font-size:14px; color:#4b5563; margin-bottom:4px; }
.where-hours { font-size:13px; color:#9ca3af; }
.where-status { color:#22c55e; font-weight:600; }
.b-where-directions { padding:0 24px 20px; background:#fff; }
.b-where-btn { display:inline-flex; align-items:center; gap:6px; background:#3b6ef0; color:#fff !important; padding:10px 20px; border-radius:8px; font-size:14px; font-weight:600; text-decoration:none; transition:background .18s; }
.b-where-btn:hover { background:#2d5dd4; color:#fff !important; }
.b-where-btn svg { flex-shrink:0; }

.b-infoblock { background:rgba(59,110,240,.06); border:1.5px solid rgba(59,110,240,.2); border-radius:12px; padding:24px; margin-bottom:24px; }
.infoblock-head { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.infoblock-ico { width:30px; height:30px; background:#3b6ef0; border-radius:7px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.infoblock-ico svg { color:#fff; width:16px; height:16px; }
.infoblock-title { font-size:16px; font-weight:700; color:#111827; }
.infoblock-text { font-size:15.5px; line-height:1.7; color:#111827; }

.b-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:24px; }
.stat-card { background:#fff; border:1.5px solid #e5e7eb; border-radius:10px; padding:22px; text-align:center; }
.stat-val { font-size:38px; font-weight:800; line-height:1; margin-bottom:8px; letter-spacing:-.03em; }
.stat-val-blue { color:#3b6ef0; }
.stat-val-green { color:#22c55e; }
.stat-label { font-size:13px; color:#9ca3af; line-height:1.4; }

@media(max-width:640px){
  .b-cta-blue { padding:28px 20px; }
  .b-cta-light { padding:24px 20px; }
  .b-stats { grid-template-columns:1fr 1fr; }
  .b-h2,.b-h2-accent,.b-h2-numbered { font-size:22px; margin-top:36px; }
  .b-image-gallery { grid-template-columns:1fr; }
}
