/*
Theme Name: BYQ Transformer
Theme URI: https://byq.glowupwigs.com/
Description: Custom B2B export theme for power transformers. English site, product CPT, conversion-focused (form / WhatsApp / email).
Author: Kuangze
Version: 1.0.0
Text Domain: byq
*/

/* ============ Design Tokens ============ */
:root {
  --ink: #0a1b2e;
  --navy: #10263f;
  --navy-2: #16324f;
  --steel: #5b6b7f;
  --line: #e3e9f1;
  --bg: #f5f8fc;
  --card: #ffffff;
  --amber: #f59e0b;
  --amber-2: #f97316;
  --grad: linear-gradient(100deg, #f59e0b, #f97316);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 27, 46, .08);
  --shadow-lg: 0 24px 60px rgba(10, 27, 46, .16);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --wa: #25d366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
::selection { background: var(--amber); color: #fff; }

.wrap { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--dark { background: var(--ink); color: #e8eef6; }
.section--white { background: #fff; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-2); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--grad); }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; }
.section-sub { color: var(--steel); max-width: 640px; margin-top: 14px; font-size: 17px; }
.section--dark .section-sub { color: #9db1c7; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; font-family: var(--font-display);
  border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(249, 115, 22, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(249, 115, 22, .45); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
.btn--wa:hover { transform: translateY(-2px); }

/* ============ Header ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.site-header.is-solid { background: rgba(10, 27, 46, .96); backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0,0,0,.25); padding: 12px 0; }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 6px 18px rgba(249, 115, 22, .4);
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: .02em; line-height: 1.05; }
.brand-name small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .32em; color: var(--amber); text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #d7e1ec; font-weight: 600; font-size: 15px; position: relative; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--grad); transition: width .25s; }
.main-nav a:hover, .main-nav .current-menu-item > a, .main-nav .current_page_item > a { color: #fff; }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after, .main-nav .current_page_item > a::after { width: 100%; }
/* dropdown */
.main-nav .menu-item { position: relative; }
.main-nav .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.main-nav .menu-item-has-children > a::before {
  content: ""; order: 2; width: 7px; height: 7px; margin-top: -2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .2s;
}
.main-nav .menu-item-has-children:hover > a::before { transform: rotate(225deg); }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 12px);
  min-width: 250px; background: #0d2138; border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s, visibility .22s;
  box-shadow: 0 24px 60px rgba(0,0,0,.45); z-index: 60;
}
.main-nav .menu-item-has-children:hover .sub-menu,
.main-nav .menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 4px); }
.main-nav .sub-menu a { display: block; padding: 11px 16px; border-radius: 8px; font-size: 14.5px; }
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: rgba(245,158,11,.14); color: var(--amber); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 102; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(10, 27, 46, .98); backdrop-filter: blur(12px);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .35s ease; z-index: 101;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 22px; }
  .main-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 4px 0 10px;
    min-width: 0; text-align: center;
  }
  .main-nav .sub-menu a { font-size: 16px; padding: 8px 16px; color: #9db1c7; }
  .main-nav .menu-item { text-align: center; }
  .header-cta .btn { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(245, 158, 11, .22), transparent 60%),
              radial-gradient(900px 500px at -10% 110%, rgba(59, 130, 246, .18), transparent 55%),
              linear-gradient(160deg, #0a1b2e 0%, #10263f 55%, #0c2138 100%);
  padding: 170px 0 110px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; letter-spacing: -.025em; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin: 22px 0 34px; font-size: 18px; color: #b9c8da; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 34px; font-weight: 800; color: #fff; }
.hero-stats .stat b i { color: var(--amber); font-style: normal; }
.hero-stats .stat span { font-size: 13px; color: #8ea3ba; letter-spacing: .06em; text-transform: uppercase; }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }

@media (max-width: 920px) {
  .hero { padding: 140px 0 80px; }
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 420px; }
}

/* ============ Trust strip ============ */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-in { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 26px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--steel); font-weight: 600; font-size: 14.5px; }
.trust-item svg { color: var(--amber-2); flex: none; }

/* ============ Product category cards ============ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card {
  background: var(--card); border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff4e0, #ffe7c2); color: var(--amber-2);
  display: grid; place-items: center;
}
.cat-card h3 { font-size: 20px; margin-bottom: 10px; }
.cat-card h3 a:hover { color: var(--amber-2); }
.cat-card p { color: var(--steel); font-size: 14.5px; flex: 1; }
.cat-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--amber-2); }
.cat-link svg { transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
@media (max-width: 920px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============ Why us ============ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 30px 26px; transition: background .25s, transform .25s;
}
.why-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.why-card .n { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--amber); letter-spacing: .1em; }
.why-card h3 { font-size: 18px; margin: 12px 0 10px; color: #fff; }
.why-card p { font-size: 14px; color: #9db1c7; }
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ Product cards ============ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-thumb { aspect-ratio: 4 / 3; background: linear-gradient(150deg, #10263f, #1d3d5e); position: relative; overflow: hidden; display: grid; place-items: center; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.prod-thumb svg.ph { width: 42%; opacity: .9; }
.prod-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prod-cat { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); }
.prod-body h3 { font-size: 18.5px; margin: 8px 0 10px; }
.prod-body h3 a:hover { color: var(--amber-2); }
.prod-body p { font-size: 14px; color: var(--steel); flex: 1; }
.prod-foot { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.prod-foot .more { font-weight: 700; font-size: 14px; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.prod-foot .more:hover { color: var(--amber-2); }
@media (max-width: 920px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } }

/* ============ CTA banner ============ */
.cta-banner { position: relative; border-radius: 20px; overflow: hidden; background: linear-gradient(120deg, #10263f, #1d3d5e); color: #fff; padding: 64px 60px; }
.cta-banner::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, .35), transparent 70%);
}
.cta-banner h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 640px; }
.cta-banner p { color: #b9c8da; margin: 14px 0 30px; max-width: 560px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
@media (max-width: 700px) { .cta-banner { padding: 44px 28px; } }

/* ============ Contact section ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info .c-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); align-items: flex-start; }
.contact-info .c-item:last-child { border-bottom: 0; }
.c-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(245,158,11,.14); color: var(--amber); display: grid; place-items: center; flex: none; }
.contact-info b { display: block; color: #fff; font-size: 15px; }
.contact-info a, .contact-info span.v { color: #9db1c7; font-size: 15px; }
.contact-info a:hover { color: var(--amber); }

.form-card { background: #fff; border-radius: 18px; padding: 40px 38px; color: var(--ink); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .f-sub { color: var(--steel); font-size: 14.5px; margin-bottom: 26px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } .form-card { padding: 30px 22px; } }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.f-field input, .f-field textarea, .f-field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px;
  font: inherit; font-size: 15px; background: #fbfcfe; transition: border-color .2s, box-shadow .2s;
}
.f-field input:focus, .f-field textarea:focus, .f-field select:focus {
  outline: 0; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, .15); background: #fff;
}
.f-field textarea { min-height: 120px; resize: vertical; }
.f-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.f-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.f-note { text-align: center; font-size: 12.5px; color: var(--steel); margin-top: 14px; }
.f-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14.5px; font-weight: 600; }
.f-status.ok { display: block; background: #e9f9ef; color: #12753d; border: 1px solid #b9e8c9; }
.f-status.err { display: block; background: #fdecec; color: #b3261e; border: 1px solid #f5c6c2; }

/* ============ Footer ============ */
.site-footer { background: #071323; color: #8ea3ba; padding: 70px 0 0; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }
.foot-grid h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 11px; }
.foot-grid a:hover { color: var(--amber); }
.foot-brand p { margin-top: 16px; max-width: 300px; line-height: 1.7; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #62779130; color: #627791; }
@media (max-width: 920px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5); animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ============ Page hero (inner pages) ============ */
.page-hero { background: linear-gradient(160deg, #0a1b2e, #16324f); color: #fff; padding: 150px 0 70px; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse at 70% 0%, #000, transparent 70%);
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 2; }
.page-hero .crumbs { position: relative; z-index: 2; margin-top: 14px; font-size: 13.5px; color: #8ea3ba; }
.page-hero .crumbs a:hover { color: var(--amber); }
.page-hero .lead { position: relative; z-index: 2; color: #b9c8da; max-width: 720px; margin-top: 16px; font-size: 17px; }

/* ============ Content / prose ============ */
.prose { max-width: 780px; }
.prose h2 { font-size: 28px; margin: 38px 0 16px; }
.prose h3 { font-size: 21px; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: #33465e; }
.prose ul { margin: 0 0 18px 22px; color: #33465e; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }

/* ============ Product single ============ */
.prod-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 920px) { .prod-detail { grid-template-columns: 1fr; gap: 36px; } }
.prod-gallery { border-radius: 18px; overflow: hidden; background: linear-gradient(150deg, #10263f, #1d3d5e); aspect-ratio: 4/3; display: grid; place-items: center; box-shadow: var(--shadow); }
.prod-gallery img { width: 100%; height: 100%; object-fit: cover; }
.prod-gallery svg.ph { width: 40%; }
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.spec-table th { width: 42%; color: var(--steel); font-weight: 600; background: #f8fafd; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.feat-list { list-style: none; margin: 18px 0 26px; }
.feat-list li { display: flex; gap: 12px; padding: 9px 0; color: #33465e; font-size: 15px; }
.feat-list li svg { flex: none; color: var(--amber-2); margin-top: 3px; }
.inq-box { background: linear-gradient(140deg, #fff7ea, #ffefd6); border: 1px solid #f5d9a8; border-radius: 16px; padding: 28px; margin-top: 8px; }
.inq-box h3 { font-size: 19px; margin-bottom: 6px; }
.inq-box p { font-size: 14px; color: #7a5b23; margin-bottom: 18px; }
.inq-box .btn { margin-right: 10px; margin-bottom: 10px; }

/* ============ Category archive layout ============ */
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
@media (max-width: 920px) { .cat-layout { grid-template-columns: 1fr; } }
.side-nav { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; position: sticky; top: 96px; }
.side-nav a { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-radius: 10px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.side-nav a:hover { background: var(--bg); }
.side-nav a.on { background: var(--grad); color: #fff; }
.side-nav .cnt { font-size: 12px; opacity: .7; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ Misc ============ */
.tag { display: inline-block; background: #eef3f9; color: var(--navy-2); border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 600; margin: 0 6px 8px 0; }
.wp-block-image img, .alignnone { border-radius: 12px; }
