/* ============================================================
   CHICKEN ROAD — WordPress Theme
   assets/css/main.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg-deep:    #0B0300;
  --bg-dark:    #170600;
  --bg-card:    #221005;
  --bg-card2:   #2E1508;
  --red-deep:   #5C0000;
  --red-mid:    #8B0000;
  --red-bright: #B81A00;
  --fire:       #FF4500;
  --fire2:      #FF7300;
  --fire-dim:   #CC3300;
  --gold:       #FFD700;
  --gold-light: #FFE566;
  --gold-dark:  #B8860B;
  --cream:      #FFF3E0;
  --text-main:  #FFE8C8;
  --text-sub:   #C8996A;
  --text-dim:   #7A5535;
  --white:      #FFFFFF;
  --r-xl: 20px; --r-lg: 14px; --r-md: 9px; --r-sm: 5px;
  --font-body:    'Mulish', 'Tajawal', sans-serif;
  --font-ar:      'Tajawal', sans-serif;
  --font-display: 'Oswald', 'Tajawal', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
[dir="rtl"] { font-family: var(--font-ar); }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--red-mid); border-radius: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11,3,0,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140,40,0,.45);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.header-logo { flex-shrink: 0; line-height: 0; }
.header-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255,180,0,.4));
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all .2s;
  letter-spacing: .3px;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  border-color: rgba(180,60,0,.5);
  background: rgba(140,40,0,.2);
}

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language / currency switcher */
.currency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  background: var(--bg-card);
  border: 1px solid rgba(140,40,0,.4);
  border-radius: var(--r-md);
  padding: 5px 10px;
  cursor: pointer;
  position: relative;
}
.currency .flag { font-size: 15px; }
.currency--polylang { cursor: pointer; }
.currency__current {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  color: var(--text-sub); font-size: 13px; font-weight: 700;
}
.currency__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card2);
  border: 1px solid rgba(180,60,0,.4);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 140px;
  z-index: 999;
}
.currency--polylang:hover .currency__menu { display: block; }
.currency__language {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-sub);
  font-size: 13px;
  transition: all .15s;
}
.currency__language:hover { background: rgba(255,100,0,.15); color: var(--cream); }
.currency__language.is-current { color: var(--gold); }

/* Header CTA */
.header-play-btn { display: inline-flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(180,60,0,.4);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  order: 10;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav-wrap {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(11,3,0,.98);
  border-bottom: 2px solid rgba(140,40,0,.5);
  backdrop-filter: blur(14px);
  z-index: 899;
  padding: 14px 20px 18px;
}
.mobile-nav-wrap.open { display: block; }
.mobile-nav-wrap .nav-link {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border-radius: var(--r-md);
  margin-bottom: 4px;
}
.mobile-nav-cta {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(100,30,0,.4);
}
.mobile-nav-cta .btn { width: 100%; justify-content: center; font-size: 15px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  padding: 13px 26px;
  text-decoration: none;
  letter-spacing: .3px;
  line-height: 1;
}
.btn-demo {
  background: rgba(40,15,5,.9);
  color: var(--cream);
  border: 2px solid var(--fire);
  box-shadow: 0 4px 16px rgba(255,69,0,.25);
}
.btn-demo:hover {
  background: rgba(70,25,5,.95);
  border-color: var(--fire2);
  box-shadow: 0 6px 26px rgba(255,100,0,.45);
  transform: translateY(-2px);
  color: var(--cream);
}
.btn-play {
  background: linear-gradient(135deg, #A81500 0%, #FF4500 55%, #FF7300 100%);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(255,69,0,.5), inset 0 1px 0 rgba(255,220,0,.2);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  overflow: hidden;
  position: relative;
}
.btn-play::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.15) 50%, transparent 65%);
  transform: skewX(-15deg) translateX(-140%);
  transition: transform .55s;
}
.btn-play:hover::after { transform: skewX(-15deg) translateX(260%); }
.btn-play:hover {
  background: linear-gradient(135deg, #C01800 0%, #FF5500 55%, #FF8400 100%);
  box-shadow: 0 7px 30px rgba(255,80,0,.65);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-lg  { padding: 17px 38px; font-size: 17px; border-radius: var(--r-lg); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,3,0,.92) 0%, rgba(20,6,0,.6) 45%, rgba(11,3,0,.35) 100%);
}

/* Embers */
.hero-embers, .hero-embers--global {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-embers--global { position: fixed; }
.ember {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, var(--fire) 60%, transparent 100%);
  animation: ember-rise linear infinite; opacity: 0;
}
.ember:nth-child(1) { left:7%;  bottom:0; width:5px; height:5px; animation-duration:4.5s; animation-delay:0s; }
.ember:nth-child(2) { left:20%; bottom:0; width:7px; height:7px; animation-duration:6s;   animation-delay:.9s; }
.ember:nth-child(3) { left:34%; bottom:0; width:4px; height:4px; animation-duration:5.1s; animation-delay:2.2s; }
.ember:nth-child(4) { left:51%; bottom:0; width:6px; height:6px; animation-duration:4.8s; animation-delay:.5s; }
.ember:nth-child(5) { left:67%; bottom:0; width:5px; height:5px; animation-duration:5.7s; animation-delay:1.7s; }
.ember:nth-child(6) { left:84%; bottom:0; width:4px; height:4px; animation-duration:4.3s; animation-delay:3s; }
@keyframes ember-rise {
  0%   { transform:translateY(0) scale(1); opacity:0; }
  10%  { opacity:.9; }
  80%  { opacity:.4; }
  100% { transform:translateY(-520px) scale(.18); opacity:0; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 24px 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(255,70,0,.55);
  letter-spacing: 1px;
}
.fire-text {
  display: block;
  background: linear-gradient(90deg, var(--fire2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 50px rgba(255,80,0,.4));
  animation: float-hero 3.2s ease-in-out infinite;
}
@keyframes float-hero {
  0%,100% { transform:translateY(0) rotate(-1.5deg); }
  50%      { transform:translateY(-16px) rotate(1.5deg); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-wrap { padding: 80px 24px; }
.section-wrap.bg-alt { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%); }
.play-band-wrap {
  background: linear-gradient(135deg, var(--red-deep) 0%, #1A0500 50%, var(--red-deep) 100%);
  border-top: 1px solid rgba(160,50,0,.3);
  border-bottom: 1px solid rgba(160,50,0,.3);
}
.section { max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-lead {
  color: var(--text-sub);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   SPECS TABLE
   ============================================================ */
.chars-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid rgba(160,50,0,.35);
  box-shadow: 0 0 40px rgba(255,69,0,.3);
}
.chars-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 15px;
}
.chars-table th,
.chars-table td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(80,20,0,.4);
  white-space: nowrap;
}
.chars-table thead tr {
  background: linear-gradient(90deg, var(--red-deep), var(--red-mid));
}
.chars-table thead th {
  color: var(--gold-light); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 2px solid var(--fire);
}
.chars-table tbody tr { background: var(--bg-card); transition: background .2s; }
.chars-table tbody tr:nth-child(even) { background: var(--bg-card2); }
.chars-table tbody tr:hover { background: rgba(70,20,0,.85); }
.chars-table td:first-child { color: var(--text-sub); font-weight: 700; width: 44%; }
.chars-table td:last-child { color: var(--gold); font-weight: 700; }

/* ============================================================
   DEMO
   ============================================================ */
.demo-outer {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid var(--red-mid);
  box-shadow: 0 0 60px rgba(200,50,0,.3), 0 0 120px rgba(120,20,0,.18);
  position: relative;
}
.demo-outer::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--fire), var(--red-deep), var(--gold-dark));
  z-index: -1; opacity: .45;
}
.demo-outer iframe {
  display: block; width: 100%; height: 560px;
  border: none; background: var(--bg-deep);
}
.demo-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 14px;
}

/* ============================================================
   STANDARD CONTENT (core WP blocks in .section)
   ============================================================ */
.standard-content h2 {
  font-family: var(--font-display);
  font-size: 24px; color: var(--gold);
  margin: 38px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(160,50,0,.3);
  letter-spacing: .3px;
}
.standard-content h2:first-child { margin-top: 0; }
.standard-content h3 {
  font-family: var(--font-display);
  font-size: 20px; color: var(--gold-light);
  margin: 28px 0 10px;
}
.standard-content p  { color: var(--text-sub); font-size: 15.5px; line-height: 1.95; margin-bottom: 14px; }
.standard-content ul { padding-left: 20px; margin-bottom: 16px; }
.standard-content ul li { color: var(--text-sub); font-size: 15px; line-height: 1.85; margin-bottom: 8px; }
.standard-content ul li::marker { color: var(--fire); }
.standard-content strong { color: var(--cream); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(120,30,0,.45);
  padding: 52px 24px 28px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(80,20,0,.5);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; filter: drop-shadow(0 0 8px rgba(255,160,0,.28)); }
.footer-brand p { color: var(--text-dim); font-size: 14px; line-height: 1.8; max-width: 270px; }
.footer-col h4 { color: var(--gold-light); font-weight: 700; font-size: 14px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(120,40,0,.3); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-dim); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 22px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { color: var(--text-dim); font-size: 13px; }
.footer-disclaimer { color: var(--text-dim); font-size: 12px; text-align: center; flex: 1; max-width: 480px; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--fire); color: var(--fire2);
  font-size: 11px; font-weight: 900;
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 20px 80px;
    text-align: center;
    gap: 36px;
  }
  .hero-visual { order: -1; }
  .hero-visual img { max-height: 280px; animation: none; }
  .hero-sub { font-size: 16px; margin-bottom: 20px; }
  .hero-btns { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .header-inner { height: 60px; padding: 0 16px; }
  .header-logo img { height: 42px; }
  .header-nav { display: none; }
  .header-play-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-wrap { top: 60px; }
  .hero-embers--global { display: none; }
  .hero-btns .btn { flex: 1; min-width: 0; font-size: 15px; padding: 15px 16px; }
  .demo-outer iframe { height: 380px; }
  .chars-table th,
  .chars-table td { padding: 12px 16px; font-size: 14px; }
  .section-wrap { padding: 52px 16px; }
  .section-head { margin-bottom: 32px; }
  .section-lead { font-size: 15px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-disclaimer { text-align: left; max-width: 100%; }
  .site-footer { padding: 40px 16px 24px; }
}

/* ============================================================
   RESPONSIVE — SMALL  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-inner { padding: 48px 16px 64px; }
  .hero-visual img { max-height: 220px; }
  .hero-title { font-size: 36px; }
  .demo-outer iframe { height: 300px; }
  .demo-outer { border-radius: var(--r-lg); }
}

/* ============================================================
   CONTENT TABLES — стандартные WP-таблицы (wp-block-table / raw)
   Горизонтальный скролл на мобилке вместо сжатых колонок
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 28px 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(160,50,0,.35);
  scrollbar-width: thin;
  scrollbar-color: var(--fire-dim) transparent;
}
.table-scroll::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--fire-dim); border-radius: 3px; }
.table-scroll::-webkit-scrollbar-track { background: transparent; }

/* Gutenberg-обёртка: не даём figure ломать layout, скроллит внутренний .table-scroll */
figure.wp-block-table {
  margin: 28px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
figure.wp-block-table .table-scroll { margin: 0; }

.table-scroll table,
.wp-block-table table,
.table-scroll table.has-fixed-layout,
.wp-block-table table.has-fixed-layout {
  table-layout: auto !important; /* перебиваем WP has-fixed-layout — иначе колонки наезжают */
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0;
  border: none;
}
.table-scroll col,
.wp-block-table col { width: auto !important; }
.table-scroll th,
.table-scroll td,
.wp-block-table th,
.wp-block-table td {
  padding: 14px 18px;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(80,20,0,.4);
  white-space: nowrap; /* колонки не сжимаются — появляется скролл */
  color: var(--text-main);
}
.table-scroll thead tr,
.wp-block-table thead tr,
.table-scroll tr:first-child th,
.wp-block-table tr:first-child th {
  background: linear-gradient(90deg, var(--red-deep), var(--red-mid));
}
.table-scroll th,
.wp-block-table th {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid var(--fire);
}
.table-scroll tbody tr,
.wp-block-table tbody tr { background: var(--bg-card); }
.table-scroll tbody tr:nth-child(even),
.wp-block-table tbody tr:nth-child(even) { background: var(--bg-card2); }
.table-scroll tbody tr:hover,
.wp-block-table tbody tr:hover { background: rgba(70,20,0,.85); }

@media (max-width: 768px) {
  .table-scroll th,
  .table-scroll td,
  .wp-block-table th,
  .wp-block-table td { padding: 11px 14px; font-size: 14px; }
}

/* ============================================================
   CONTENT BUTTONS — стандартные WP-кнопки (wp-block-button)
   Десктоп: стиль темы. Мобилка: меньше + без переноса + на всю ширину
   ============================================================ */
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .3px;
  white-space: nowrap;
  padding: 13px 26px;
  border: none;
  border-radius: var(--r-md) !important;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  background: linear-gradient(135deg, #A81500 0%, #FF4500 55%, #FF7300 100%);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(255,69,0,.5), inset 0 1px 0 rgba(255,220,0,.2);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.wp-block-button__link:hover {
  background: linear-gradient(135deg, #C01800 0%, #FF5500 55%, #FF8400 100%);
  box-shadow: 0 7px 30px rgba(255,80,0,.65);
  transform: translateY(-2px);
  color: var(--white);
}
.is-style-outline .wp-block-button__link {
  background: rgba(40,15,5,.9);
  color: var(--cream);
  border: 2px solid var(--fire);
  box-shadow: 0 4px 16px rgba(255,69,0,.25);
}
.is-style-outline .wp-block-button__link:hover {
  background: rgba(70,25,5,.95);
  border-color: var(--fire2);
  color: var(--cream);
}

@media (max-width: 768px) {
  /* Кнопки меньше, текст в одну строку, растягивается сама кнопка */
  .btn {
    font-size: 14px;
    padding: 12px 18px;
  }
  .btn-lg {
    font-size: 14px;
    padding: 13px 20px;
  }
  .wp-block-buttons { width: 100%; }
  .wp-block-buttons .wp-block-button {
    width: 100%;
    flex: 1 1 100%;
  }
  .wp-block-button__link,
  .crd-cta {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    padding: 13px 14px;
  }
}
@media (max-width: 480px) {
  .wp-block-button__link,
  .crd-cta { font-size: 13px; letter-spacing: .2px; }
}
