﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --ink: #2b2624;
  --ink-soft: #645d58;
  --muted: #8e8782;
  --surface: #ffffff;
  --surface-alt: #fff4ef;
  --surface-soft: #fff9f6;
  --surface-veil: rgba(255, 255, 255, 0.82);
  --border: rgba(255, 195, 180, 0.6);
  --accent: #ff6f8b;
  --accent-strong: #ff4f73;
  --accent-mint: #6ed6c7;
  --accent-sky: #7dc7ff;
  --accent-peach: #ffb27a;
  --accent-lemon: #ffd978;
  --shadow: rgba(23, 30, 39, 0.12);
  --shadow-strong: rgba(23, 30, 39, 0.2);
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-display: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --listener-name: #ffffff;
  --listener-name-bg: #6ed6c7;
  --listener-comment: #3a3a3a;
  --listener-comment-bg: #ffffff;
  --listener-comment-border: #6ed6c7;
  --chat-font-size: 16px;
  --chat-line-height: 1.5;
  --bubble-radius: 28px;
  --bubble-padding-y: 12px;
  --bubble-padding-x: 20px;
  --bubble-max-width: 32ch;
  --bubble-shadow: 4px 4px 6px rgba(23, 39, 62, 0.066);
  --timestamp-display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffb1c2);
  color: #fff;
  box-shadow: none;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--border);
  color: var(--ink);
}

.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #ffb1c2);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  box-shadow: none;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  font-size: 18px;
}

.brand-subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  color: var(--ink-soft);
}

.header-nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-copy {
  animation: heroFade 0.8s ease-out both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  margin: 12px 0 20px;
}

.hero-lead {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin: 12px 0 16px;
}

.section-lead {
  color: var(--ink-soft);
}

.studio {
  padding: 72px 0;
}

.main-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  grid-template-areas: "settings preview";
  gap: 48px;
  align-items: stretch;
}

.comment-contents {
  grid-area: preview;
  position: relative;
  align-self: stretch;
  height: 100%;
}

.comment-inner {
  position: sticky;
  top: 120px;
  background: var(--surface-veil);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 206, 194, 0.6);
  box-shadow: 0 24px 40px var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--ink-soft);
}

.preview-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.preview-tag {
  background: rgba(110, 214, 199, 0.2);
  color: #2a5f56;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.comment-column {
  display: grid;
  gap: 16px;
}

.listener-contents {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--chat-font-size);
  font-weight: 700;
  line-height: var(--chat-line-height);
  letter-spacing: 0.02em;
  animation: popInLeft 0.35s ease-out both;
}

.comment-container {
  display: grid;
  gap: 8px;
}

.comment-channel-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-time {
  font-size: 11px;
  color: var(--muted);
  display: var(--timestamp-display);
}

.comment-name {
  display: flex;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: var(--listener-name-bg);
  color: var(--listener-name);
  font-size: 12px;
}

.comment-message {
  background-color: var(--listener-comment-bg);
  color: var(--listener-comment);
  border-radius: var(--bubble-radius);
  border: 3px solid var(--listener-comment-border);
  display: block;
  padding: var(--bubble-padding-y) var(--bubble-padding-x);
  width: fit-content;
  max-width: var(--bubble-max-width);
  position: relative;
  overflow: visible;
  font-weight: 500;
  box-shadow: var(--bubble-shadow);
}

.comment-before,
.comment-after {
  content: "";
  position: absolute;
  top: 4px;
  left: -3px;
  width: 21px;
  height: 21px;
  transform: rotate(-20deg) skew(20deg, 20deg);
  background-color: var(--listener-comment-border);
  border-top-left-radius: 7px;
  border-bottom-right-radius: 6px;
  z-index: -1;
}

.comment-after {
  top: 7px;
  left: 1px;
  width: 18px;
  height: 18px;
  background-color: var(--listener-comment-bg);
  border-top-left-radius: 4px;
  border-bottom-right-radius: 20px;
  z-index: 0;
}

.custom-contents {
  grid-area: settings;
  background: var(--surface-veil);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 206, 194, 0.6);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.custom-heading {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}

.custom-category + .custom-category {
  margin-top: 40px;
}

.custom-category.is-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  align-items: start;
}

.custom-category.is-split .custom-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.custom-category.is-split .custom-label-group,
.custom-category.is-split .custom-range {
  margin-top: 0;
}

.custom-category.is-split .custom-label-group + .custom-label-group {
  margin-top: 0;
}

.custom-label-group {
  margin-top: 20px;
}

.custom-label-name {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}


.custom-label-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.custom-label-item input {
  display: none;
}

.custom-label-radio {
  position: relative;
  cursor: pointer;
  padding: 0 0 1px 24px;
  font-size: 14px;
}

.custom-label-radio::before,
.custom-label-radio::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.custom-label-radio::before {
  background-color: var(--surface);
  border: 1px solid var(--border);
  width: 16px;
  height: 16px;
  left: 0;
}

.custom-label-radio::after {
  background-color: var(--accent);
  width: 10px;
  height: 10px;
  left: 3px;
  opacity: 0;
}

.custom-label-item input:checked + .custom-label-radio::after {
  opacity: 1;
}

.custom-select select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

.custom-range {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 8px;
}

.custom-range.is-flat {
  margin-top: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.custom-range label {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-value {
  font-weight: 700;
  color: var(--accent-strong);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}


.custom-color-contents {
  display: grid;
  gap: 24px;
}

.custom-color-heading {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.custom-color-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-switch-slider {
  position: absolute;
  inset: 0;
  background: rgba(120, 110, 104, 0.25);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.custom-switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.custom-switch input:checked + .custom-switch-slider {
  background: var(--accent);
}

.custom-switch input:checked + .custom-switch-slider::before {
  transform: translateX(22px);
}

.custom-color-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.custom-color-custom.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.custom-color-custom input[type="color"] {
  appearance: none;
  width: 32px;
  height: 32px;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.custom-color-custom input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 50%;
}

.custom-color-custom input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 50%;
}

.custom-color-value {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.custom-template-column {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.custom-color-template {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.custom-color-template:hover {
  transform: translateY(-2px);
}

.custom-color-template.active {
  border-color: var(--accent-strong);
}

.sakura {
  background: #ff8fa3;
}

.mint {
  background: #6ed6c7;
}

.sky {
  background: #7dc7ff;
}

.peach {
  background: #ffb27a;
}

.lemon {
  background: #ffd978;
}

.lavender {
  background: #b59af8;
}

.berry {
  background: #ff6fae;
}

.matcha {
  background: #8ccb7f;
}

.aqua {
  background: #5fcde4;
}

.cocoa {
  background: #6e5a4e;
}

.custom-create-block {
  margin-top: 32px;
}

.custom-create-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), #ffb1c2);
  width: 100%;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.create-modal-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(18, 22, 28, 0.55);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 20;
}

.create-modal-contents::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.create-modal-contents.is-active {
  opacity: 1;
  visibility: visible;
}

.create-modal-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: calc(100% - 40px);
  background-color: var(--surface);
  border-radius: 30px;
  box-shadow: none;
}

.create-modal-inner {
  padding: 46px 64px;
  position: relative;
}

.modal-close {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.create-close-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-strong);
  top: -64px;
  right: 0;
  box-shadow: none;
}

.modal-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 16px;
}

.modal-css-content {
  position: relative;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.modal-css {
  position: relative;
  max-width: 650px;
  width: 100%;
  height: 196px;
  margin: auto;
  background-color: var(--surface-alt);
  border-radius: 20px;
  padding: 24px 48px;
  text-align: left;
  resize: none;
  border: none;
  font-size: 12px;
  line-height: 1.6;
}

.copy-action {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  position: relative;
}

.copy-output {
  position: fixed;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.copy-dialog {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 22, 28, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.copy-dialog.is-active {
  opacity: 1;
  visibility: visible;
}

.copy-dialog__card {
  width: min(360px, 90vw);
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
}

.copy-dialog__title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.copy-dialog__close {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.create-text {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.copy-btn {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ffb1c2);
  box-shadow: none;
}

.copy-tooltip {
  opacity: 0;
  position: absolute;
  top: -36px;
  right: 0;
  background-color: #2c2c2c;
  padding: 8px 16px;
  border-radius: 12px;
  width: fit-content;
  transition: opacity 0.5s ease;
}

.copy-tooltip::before {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #2c2c2c;
  border-bottom: 0;
}

.copy-tooltip.show {
  opacity: 1;
}

.copy-tooltip-text {
  font-size: 12px;
  color: #fff;
}

.obs-guide {
  padding: 72px 0 96px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.obs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.obs-step {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--accent);
  box-shadow: none;
}

.obs-step-no {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-strong);
  background: rgba(255, 111, 139, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.obs-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--ink);
}

.obs-step p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
}

.obs-url {
  font-size: 12px;
  background: rgba(255, 111, 139, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  word-break: break-all;
  color: var(--accent-strong);
}

.obs-tip {
  font-size: 12px;
  color: var(--ink);
}


.site-footer {
  padding: 40px 0 60px;
}

.footer-inner {
  text-align: center;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 8px;
}

.footer-note {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popInLeft {
  0% {
    opacity: 0;
    transform: translate(-24px, 12px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes popInRight {
  0% {
    opacity: 0;
    transform: translate(24px, 12px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-32px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(32px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatInLeft {
  0% {
    opacity: 0;
    transform: translate(-18px, 18px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes floatInRight {
  0% {
    opacity: 0;
    transform: translate(18px, 18px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-42px) scale(0.92);
  }
  60% {
    opacity: 1;
    transform: translateX(6px) scale(1.02);
  }
  80% {
    transform: translateX(-4px) scale(0.99);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(42px) scale(0.92);
  }
  60% {
    opacity: 1;
    transform: translateX(-6px) scale(1.02);
  }
  80% {
    transform: translateX(4px) scale(0.99);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes swingInLeft {
  0% {
    opacity: 0;
    transform: translateX(-22px) rotate(-6deg);
  }
  60% {
    opacity: 1;
    transform: translateX(4px) rotate(2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes swingInRight {
  0% {
    opacity: 0;
    transform: translateX(22px) rotate(6deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-4px) rotate(-2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: translateX(-14px) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: translateX(14px) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-10px, 6px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(10px, 6px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .main-column {
    grid-template-columns: 1fr;
    grid-template-areas:
      "preview"
      "settings";
  }

  .comment-inner {
    position: static;
  }

  .obs-grid {
    grid-template-columns: 1fr;
  }

  .custom-template-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .comment-inner,
  .custom-contents {
    padding: 20px;
  }

  .custom-template-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .custom-category.is-split {
    grid-template-columns: 1fr;
  }

  .create-modal-inner {
    padding: 28px 24px;
  }
}

