/* ============================================
   Gadgets-X Global Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--gx-dark);
  background: var(--gx-bg);
  line-height: 1.6;
}

a {
  color: var(--gx-accent);
  text-decoration: none;
}
a:hover { color: var(--gx-accent-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

/* Bricks ネイティブボタン: カプセル形状 + オレンジ primary */
.brxe-button {
  border-radius: 999px;
}
.brxe-button.style-primary,
.bricks-button-primary,
.brxe-button[class*="primary"] {
  background-color: var(--gx-accent);
  border-color: var(--gx-accent);
  color: var(--gx-white);
}
.brxe-button[class*="primary"]:hover {
  background-color: var(--gx-accent-dark);
  border-color: var(--gx-accent-dark);
}
