:root {
  --container: 1312px;
  --wp--style--global--content-size: 1312px;
  --wp--style--global--wide-size: 1312px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
  --font-base: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-heading: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", serif;
  --font-bona: "Bona Nova SC", "Times New Roman", serif;
  --font-kaku: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
  --color-bg: #f6f8fa;
  --color-surface: #ffffff;
  --color-text: #1b232a;
  --color-muted: #74838f;
  --color-line: #d8e0e6;
  --color-accent: #0c718d;
  --color-accent-strong: #0a5674;
  --color-header-bg: #ffffff;
  --color-footer: #0f1b24;
  --shadow-1: 0 10px 28px rgba(16, 31, 42, 0.08);
  --header-text: #181818;
  --header-caption-size: 11.2px;
  --header-nav-size: 15.2px;
  --header-nav-letter: 0.3px;
  --header-reserve-ja-size: 20px;
  --header-reserve-ja-line: 25.6px;
  --header-reserve-en-size: 11.2px;
  --header-reserve-en-line: 14.34px;
  --header-offset: 86px;
  --edge-padding: 20px;
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  padding-top: var(--header-offset);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.ts-has-main-visual {
  padding-top: 0;
}

body:is(
  .page-template-page-school-plan,
  .page-template-page-news,
  .page-template-page-contact,
  .page-template-page-privacy-policy,
  .page-template-page-instructor,
  .error404,
  .home.blog,
  .single-post
) {
  padding-top: 0;
}

/* Fallback when template/body classes differ by routing setup */
body:has(main.ts-school-plan-page),
body:has(main.ts-news-page),
body:has(main.ts-contact-page),
body:has(main.ts-privacy-page),
body:has(main.ts-instructor-page),
body:has(main.ts-404-page),
body:has(section.ts-news-hero) {
  padding-top: 0;
}

.wp-site-blocks > main:is(
  .ts-school-plan-page,
  .ts-news-page,
  .ts-contact-page,
  .ts-privacy-page,
  .ts-instructor-page,
  .ts-404-page,
  .ts-news-detail
) {
  margin-block-start: 0;
}

/* 404 page */
.ts-404-page {
  background: #ffffff;
}

.ts-404-hero__media {
  margin: 0;
}

.ts-404-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-404-content {
  padding: 40px 0 64px;
}

.ts-404-content__inner {
  background: #ffffff;
  border-radius: 4px;
  padding: 36px 20px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.ts-404-content__code {
  margin: 0;
  color: #7a8b97;
  font-family: var(--font-bona);
  font-size: clamp(40px, 13vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ts-404-content__title {
  margin: 0;
  color: #181818;
  font-family: var(--font-mincho);
  font-size: clamp(28px, 7.2vw, 40px);
  font-weight: 300;
  line-height: 1.4;
}

.ts-404-content__lead,
.ts-404-content__hint {
  margin: 0;
  color: #181818;
  font-family: var(--font-kaku);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.ts-404-content__actions {
  width: min(100%, 640px);
  display: grid;
  gap: 10px;
}

.ts-404-content__button {
  width: 100%;
  min-height: 50px;
  border-radius: 4px;
  border: 1px solid #2f80c8;
  background: #ffffff;
  color: #2f80c8;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ts-404-content__button:hover,
.ts-404-content__button:focus-visible {
  background: #f2f8ff;
  color: #2467a4;
}

.ts-404-content__button--primary {
  background: #2f80c8;
  color: #ffffff;
}

.ts-404-content__button--primary:hover,
.ts-404-content__button--primary:focus-visible {
  background: #2467a4;
  color: #ffffff;
}

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

a {
  color: var(--color-accent);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--color-accent-strong);
}

.ts-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.ts-header .ts-container {
  width: 100%;
  max-width: none;
  padding-inline: var(--edge-padding);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.ts-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 150;
  background: transparent;
  border: 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.ts-header.ts-header--scrolled,
.ts-header.is-open {
  background: var(--color-header-bg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ts-header__inner {
  min-height: 0;
  padding-block: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.ts-brand-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ts-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.ts-brand img {
  width: 128px;
  height: auto;
  display: block;
}

.ts-brand__caption {
  margin: 0;
  font-size: var(--header-caption-size);
  letter-spacing: 0;
  white-space: normal;
  display: none;
}

.ts-nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--header-text);
  cursor: pointer;
  transition: none;
}

.ts-nav-toggle:hover,
.ts-nav-toggle:focus-visible {
  background: transparent;
}

.ts-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ts-header.is-open .ts-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ts-header.is-open .ts-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.ts-header.is-open .ts-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ts-header__right {
  display: none;
}

.ts-header.is-open .ts-header__right {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.9rem;
  background: #ffffff;
  border: 0;
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 0.8rem;
}

.ts-nav {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__item {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__dropdown {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__dropdown-toggle {
  display: none;
}

.ts-nav__dropdown-label {
  display: none;
}

.ts-nav__submenu {
  display: none;
  width: 100%;
  margin: 0;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
}

.ts-nav__dropdown-toggle:checked ~ .ts-nav__submenu {
  display: grid;
}

.ts-nav__item--has-children:focus-within .ts-nav__submenu {
  display: grid;
}

.ts-nav__sublink {
  font-size: 15px;
  line-height: 1.45;
  padding: 14px 44px 14px 22px;
  text-align: left;
  border-radius: 0;
  border-bottom: 1px solid #d2d2d2;
  background: #f7f7f7;
  transition: none;
}

.ts-nav__sublink:first-child {
  border-top: 1px solid #d2d2d2;
}

.ts-nav__link,
.ts-nav__dropdown-label,
.ts-nav__sublink {
  display: block;
  text-decoration: none;
  letter-spacing: var(--header-nav-letter);
  line-height: normal;
}

.ts-nav__link {
  border-radius: 10px;
  font-size: var(--header-nav-size);
  padding: 0.5rem 0.45rem;
}

.ts-nav__dropdown-label {
  border-radius: 10px;
  font-size: var(--header-nav-size);
  padding: 0.5rem 2rem 0.5rem 0.45rem;
  position: relative;
  cursor: pointer;
}

.ts-nav__dropdown-label::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.ts-nav__dropdown-toggle:checked + .ts-nav__dropdown-label::after {
  transform: translateY(-40%) rotate(-135deg);
}

.ts-nav__link:hover,
.ts-nav__link:focus-visible,
.ts-nav__dropdown-label:hover,
.ts-nav__dropdown-label:focus-visible,
.ts-nav__sublink:hover,
.ts-nav__sublink:focus-visible {
  background: #f4f6f8;
  color: var(--header-text);
}

/* Instagram icon toggle: set --ts-instagram-display:inline-flex to show again */
.ts-instagram {
  width: 20px;
  height: 20px;
  display: var(--ts-instagram-display, none);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ts-instagram img {
  width: 20px;
  height: 20px;
  display: block;
}

.ts-reserve {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(90deg, #0070d0 20%, #e73414 100%);
  padding: 8px;
}

.ts-reserve__copy {
  flex: 1 1 0;
  padding-top: 2px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 10px;
}

.ts-reserve__ja {
  color: #ffffff;
  font-family: var(--font-mincho);
  font-size: var(--header-reserve-ja-size);
  font-weight: 300;
  line-height: var(--header-reserve-ja-line);
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.ts-reserve__en {
  color: #ffffff;
  font-family: var(--font-bona);
  font-size: var(--header-reserve-en-size);
  font-weight: 400;
  line-height: var(--header-reserve-en-line);
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: none;
}

.ts-brand__caption,
.ts-nav__link,
.ts-nav__dropdown-label,
.ts-nav__sublink {
  color: var(--header-text);
  font-family: var(--font-mincho);
  font-weight: 300;
  overflow-wrap: break-word;
}

.ts-reserve__arrow {
  width: 48px;
  height: 48px;
  border-radius: 96px;
  outline: 1px solid #ffffff;
  outline-offset: -1px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ts-reserve__arrow-icon {
  width: 12px;
  height: 9px;
  display: block;
}


/* Override WP global block gap for all top-level blocks */
.wp-site-blocks > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Footer CTA */
.ts-footer-cta {
  margin-top: 0;
  background: #7fc3d2;
  padding: 24px 0 0;
}

.ts-footer-cta__inner {
  display: grid;
  gap: 24px;
}

.ts-footer-cta__cards {
  display: grid;
  gap: 12px;
}

.ts-footer-cta__card {
  display: grid;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}

.ts-footer-cta__media {
  margin: 0;
  aspect-ratio: 16 / 9;
}

.ts-footer-cta__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ts-footer-cta__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ts-footer-cta__title {
  margin: 0;
  color: #181818;
  font-family: var(--font-bona);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.ts-footer-cta__title-break-pc {
  display: none;
}

.ts-footer-cta__lead {
  margin: 14px 0 22px;
  color: #181818;
  font-family: var(--font-kaku);
  font-size: 12px;
  font-weight: 300;
  line-height: 15.36px;
  letter-spacing: 0.24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ts-footer-cta__lead span[aria-hidden="true"] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #181818;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1;
}

.ts-footer-cta__lead span[aria-hidden="true"]::before {
  content: "✓";
}

.ts-footer-cta__button {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #2f80c8;
  color: #ffffff;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 300;
  line-height: 30.4px;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  position: relative;
}

.ts-footer-cta__button > span:first-child {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

.ts-footer-cta__button:hover,
.ts-footer-cta__button:focus-visible {
  color: #ffffff;
  background: #2467a4;
}

.ts-footer-cta__button-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 28px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.ts-footer-cta__button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 10px;
  background: url("/wp-content/themes/ts-surfwind/assets/img/common/icons/arrow.svg")
    center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.ts-footer-cta__rule {
  width: min(100%, 1120px);
  height: 1px;
  margin-inline: auto;
  background: rgba(24, 24, 24, 0.2);
}

.ts-footer-cta__phone {
  color: #181818;
  width: min(100%, 1120px);
  margin-inline: auto;
  margin-bottom: 48px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.ts-footer-cta__phone-contact {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.ts-footer-cta__phone-lead {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 300;
  line-height: 30.72px;
  letter-spacing: 0.48px;
}

.ts-footer-cta__phone-number {
  margin: 0;
  color: #181818;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 42.24px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-footer-cta__phone-icon {
  width: 16px;
  height: auto;
  flex: 0 0 auto;
  display: block;
  transform: translateY(1px);
}

.ts-footer-cta__phone-hours {
  margin: 0;
  font-family: var(--font-kaku);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.ts-footer-cta__phone-number:hover,
.ts-footer-cta__phone-number:focus-visible {
  color: #181818;
}

/* Footer main */
.ts-footer-main {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 88px 16px 24px;
  background: #0f141d;
  color: #ffffff;
}

.ts-footer-main a {
  color: #ffffff;
}

.ts-footer-main__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 86px;
  grid-auto-flow: dense;
  gap: 16px;
  padding: 16px;
}

.ts-footer-main__col {
  display: contents;
}

.ts-footer-main__tile {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0e13;
}

.ts-footer-main__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-footer-main__tile--01 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--02 {
  grid-row: span 3;
}

.ts-footer-main__tile--03 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--04 {
  grid-row: span 4;
}

.ts-footer-main__tile--05 {
  grid-column: span 2;
  grid-row: span 4;
}

.ts-footer-main__tile--06 {
  grid-column: span 2;
  grid-row: span 4;
}

.ts-footer-main__tile--07 {
  grid-row: span 3;
}

.ts-footer-main__tile--08 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--09 {
  grid-column: span 2;
  grid-row: span 3;
}

.ts-footer-main__tile--10 {
  grid-row: span 2;
}

.ts-footer-main__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(132, 208, 220, 0.34) 0%, rgba(10, 13, 20, 0.86) 58%, rgba(8, 10, 16, 0.94) 100%),
    rgba(6, 8, 12, 0.48);
}

.ts-footer-main__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  min-height: 648px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.ts-footer-main__center {
  width: min(100%, 900px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.ts-footer-main__tagline,
.ts-footer-main__address,
.ts-footer-main__catch-en {
  margin: 0;
  text-align: center;
}

.ts-footer-main__tagline {
  margin-top: -12px;
  margin-bottom: 32px;
  font-family: var(--font-kaku);
  font-size: 11.2px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.42px;
}

.ts-footer-main__brand {
  display: inline-flex;
  line-height: 1;
}

.ts-footer-main__brand img {
  width: clamp(132px, 32vw, 160px);
  height: auto;
  display: block;
}

.ts-footer-main__address {
  width: min(100%, 920px);
  font-family: var(--font-kaku);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.32px;
}

.ts-footer-main__station {
  margin: 0;
  display: inline-block;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 300;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.ts-footer-main__station-rule {
  display: none;
}

.ts-footer-main__catch-ja {
  margin: 0;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(48px, 10.5vw, 72px);
  font-weight: 300;
  line-height: 1.2;
}

.ts-footer-main__catch-line {
  display: block;
}

.ts-footer-main__catch-en {
  font-family: var(--font-bona);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.ts-footer-main__nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}

.ts-footer-main__nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.24px;
}

.ts-footer-main__nav a:hover,
.ts-footer-main__nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.ts-footer-main__bottom {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.ts-footer-main__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ts-footer-main__instagram {
  width: 24px;
  height: 24px;
  display: var(--ts-instagram-display, none);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ts-footer-main__instagram img {
  width: 24px;
  height: 24px;
  display: block;
}

.ts-footer-main__privacy,
.ts-footer-main__copyright {
  margin: 0;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.35;
}

.ts-footer-main__copyright {
  font-family: var(--font-bona);
}

.ts-footer-main__privacy:hover,
.ts-footer-main__privacy:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
.ts-footer,
footer.site-footer {
  margin-top: var(--space-6);
  background: var(--color-footer);
  color: #d7e4ec;
  padding: var(--space-5) 0;
}

.ts-footer a,
footer.site-footer a {
  color: #eaf6ff;
}

/* Post list cards */
.wp-block-query {
  display: grid;
  gap: var(--space-3);
}

.wp-block-post {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-1);
  padding: var(--space-4);
}

.wp-block-post-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-heading);
  line-height: 1.35;
}

.wp-block-post-date {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Post detail */
.entry-content,
.wp-block-post-content {
  color: var(--color-text);
}

.entry-content > * + *,
.wp-block-post-content > * + * {
  margin-block-start: var(--space-3);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3 {
  font-family: var(--font-heading);
  line-height: 1.35;
}

/* Buttons */
button,
.button,
.wp-element-button,
input[type="submit"] {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover,
.button:hover,
.wp-element-button:hover,
input[type="submit"]:hover {
  background: var(--color-accent-strong);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-s);
  padding: 0.7rem 0.8rem;
  background: #fff;
  color: var(--color-text);
}

label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
