/* ============================================================
   Papatto Widgets — Structure Layer
   구조(레이아웃/간격/컴포넌트 트리)는 톤앤매너와 무관하게 고정.
   Role 기반 네이밍 컨벤션(papatto_naming_convention.md) 준수:
   Role(컴포넌트명) / Token Ref(크기) / Semantic Tag(HTML태그)는 독립 축.
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* 시맨틱 태그는 페이지 조립 시점에 코드가 결정 (h1이 올지 h2가 올지 미리 알 수 없음).
   태그 자체의 브라우저 기본 font-size/weight/line-height가 토큰 값을 덮어쓰지 않도록,
   부모(Role 클래스가 걸린 wrapper)의 값을 그대로 상속받게 강제한다. */
h1, h2, h3, h4, h5, h6,
p, small, button, label {
  font: inherit;
  color: inherit;
}

.page {
  max-width: 480px;
  margin: 0 auto;
}

/* ── 공용: Headline (Role: Headline · 4-1 규칙: 페이지 내 위치로 Token Ref 결정) ── */
.headline-wrapper {
  padding: 0 var(--gutter);
  font-weight: var(--font-weight-headline);
  line-height: var(--line-height);
}
.headline-wrapper--h1 { font-size: var(--font-h1); }  /* 페이지 첫 Headline */
.headline-wrapper--h2 { font-size: var(--font-h2); }  /* 그 외 섹션 */
.headline-wrapper--center { text-align: center; }

/* ── 공용: Subhead (Role: Subhead · Token: Lead, Headline과 무관한 독립 토큰) ── */
.subhead-wrapper {
  padding: 0 var(--gutter);
  font-size: var(--font-lead);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height);
  color: var(--color-text-primary);
}
.subhead-wrapper--center { text-align: center; }

/* ── 공용: Button / ButtonSecondary (Role: Button) ── */
.button-list {
  display: flex;
  gap: var(--space-10);
  justify-content: center;
  padding: 0 var(--gutter);
}
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  height: 40px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  font-size: var(--font-body);
  font-weight: var(--font-weight-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}
.btn--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}
.btn--on-dark.btn--primary {
  background: var(--color-text-inverse);
  color: var(--color-accent);
}
.btn--on-dark.btn--secondary {
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}

/* ============================================================
   HeroSection
   ============================================================ */
.hero-section {
  position: relative;
  padding-top: var(--space-320);
  padding-bottom: var(--space-40);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-border);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}
.hero-section > *:not(.hero-section__bg) { position: relative; z-index: 1; }

.hero-section .headline-wrapper,
.hero-section .subhead-wrapper {
  color: var(--color-text-inverse);
}
.hero-section .headline-wrapper {
  margin-bottom: var(--space-20);
  font-weight: var(--font-weight-headline-hero);
}
.hero-section .subhead-wrapper { margin-bottom: var(--space-20); }
.hero-section .button-list { margin-top: var(--space-20); }
/* Hero 버튼은 CTA 버튼과 다른 액센트 슬롯을 쓸 수 있어야 함 (Kitsch 실측으로 확인됨) */
.hero-section .btn--primary {
  background: var(--color-hero-button-bg, var(--color-text-inverse));
  color: var(--color-hero-button-text, var(--color-accent));
  backdrop-filter: blur(var(--btn-backdrop-blur, 0px));
  -webkit-backdrop-filter: blur(var(--btn-backdrop-blur, 0px));
}

/* ============================================================
   ImageTextSection
   구조: 이미지 → headline → subhead. headline/subhead는 공용 Role 클래스 재사용.
   .image-text-section__image-frame은 cta-section__image-frame과 값은 같지만
   의미가 다른 섹션이라 클래스를 공유하지 않는다.
   ============================================================ */
.image-text-section {
  padding: var(--space-40) 0;
}
.image-text-section__image-frame {
  width: 100%;
  aspect-ratio: 400 / 320;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-20);
}
.image-text-section .headline-wrapper {
  margin-bottom: var(--space-20);
  font-weight: var(--font-weight-headline-section);
}

/* ============================================================
   CarouselSection
   ============================================================ */
.carousel-section {
  padding: var(--space-40) 0;
}
.carousel-section .headline-wrapper { margin-bottom: var(--space-20); }

.carousel-slide-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 var(--gutter);
}
.carousel-slide-wrapper::-webkit-scrollbar { display: none; }

.carousel-slide {
  display: flex;
  gap: var(--space-10);
}

/* Widget: Card */
.card {
  flex: 0 0 240px;
  width: 240px;
  overflow: hidden; /* 카드 자체가 라운드+테두리를 가질 수 있어서 상시 클립 (radius:0/border:0이면 시각 영향 없음) */
  border-radius: var(--radius-card);
  border: var(--border-card-width, 0) solid var(--color-border-card, transparent);
}
.card__image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-image);
}
.card__texts { padding: var(--space-10) var(--card-inset, 0) 0; }
.card-title-wrapper {
  font-size: var(--font-title-card);
  font-weight: var(--font-weight-title);
  line-height: var(--line-height);
  color: var(--color-text-primary);
}
.card-detail-wrapper {
  margin-top: var(--space-10);
  font-size: var(--font-detail);
  line-height: var(--line-height);
  color: var(--color-accent-soft);
}

.carousel-nav-buttons {
  display: flex;
  gap: var(--space-10);
  justify-content: center;
  padding: 0 var(--gutter);
  margin-top: var(--space-20);
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-primary);
}
.icon-btn .icon { font-size: 24px; }

/* ============================================================
   CtaSection
   ============================================================ */
.cta-section {
  padding-top: var(--space-40);
  padding-bottom: 0;
}
.cta-section .headline-wrapper {
  margin-bottom: var(--space-10);
  font-weight: var(--font-weight-headline-section);
}
.cta-section .subhead-wrapper { margin-bottom: var(--space-20); }
.cta-section .button-list { margin-bottom: var(--space-20); }
.cta-section .btn--primary {
  background: var(--color-cta-button-bg, var(--color-accent));
  color: var(--color-cta-button-text, var(--color-text-inverse));
}

.cta-section__image-frame {
  width: 100%;
  aspect-ratio: 400 / 320;
  background-size: cover;
  background-position: center;
}

.icon {
  font-family: var(--icon-family);
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" var(--icon-fill),
    "wght" var(--icon-weight),
    "GRAD" var(--icon-grade),
    "opsz" var(--icon-opsz);
}

.icon-btn--plain {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
}

/* ============================================================
   NotificationBanner
   배경색이 톤마다 "브랜드 액센트"일 수도 "중립 잉크색"일 수도 있어서
   (Modern=오렌지 액센트, Kitsch=검정 중립) 전용 시맨틱 토큰으로 분리.
   ============================================================ */
.notification-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  background: var(--color-notification-bg);
  color: var(--color-text-inverse);
  padding: 2px var(--gutter);
}
.notification-banner__text {
  flex: 1;
  font-size: var(--font-helper);
  line-height: 1.4;
  text-align: center;
}

/* ============================================================
   Site Topbar (NotificationBanner + Header)
   ============================================================ */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: calc(-1 * var(--topbar-height, 120px));
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-40);
  padding: 10px var(--gutter);
  background: var(--color-header-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--color-header-text); /* Header 배경이 밝을 수도(Kitsch) 어두울 수도(Modern) 있어서 분리 */
}

/* 로고 밝기 기반 자동 배경 전환(2026-08, app.js의 applyTopbarLuminance가 토글) — blur(15px)는
   .site-header의 backdrop-filter를 그대로 물려받아서 안 건드림(요청사항: 오파시티/블러는 그대로).
   여기 opacity 값(.55/.75)은 임시 추정치 — --color-header-bg의 실제 값(테마 파일)을 보고
   맞춰야 정확함. --color-header-text도 같이 뒤집어서 로고 옆 메뉴 아이콘 색도 항상 잘 보이게 함. */
.pp-topbar--dark-logo .site-header {
  --color-header-bg: rgba(255, 255, 255, .75);
  --color-header-text: #1a1a1a;
}
.pp-topbar--light-logo .site-header {
  --color-header-bg: rgba(0, 0, 0, .55);
  --color-header-text: #ffffff;
}

.logo-section {
  /* 로고 표시창 크기(2026-08): 세로 48px→28px로 줄이고, 가로는 최대 280px까지 허용.
     너비는 max-width라서 강제로 꽉 채우진 않음 — 실제 이미지가 그보다 좁으면 그만큼만 차지함.
     참고: 지금 업로드 크롭 비율(sections-schema.json의 logo aspect)이 15:4(≈3.75:1)인데
     이 공간을 꽉 채우게 보임(아니면 지금처럼 왼쪽으로 치우쳐 짧게 보이는 게 정상 동작). */
  height: 36px;
  max-width: 280px;
  display: flex;
  align-items: center;
}
.logo-section img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ============================================================
   FqaAccordionSection
   ============================================================ */
.faq-section {
  padding: var(--space-40) 0;
  background: var(--color-faq-bg, transparent);
}
.faq-section .headline-wrapper {
  margin-bottom: var(--space-40);
  font-weight: var(--font-weight-headline-section);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: 0 var(--gutter);
}

.accordion {
  background: var(--color-surface-muted);
  border-radius: var(--radius-card);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.accordion summary::-webkit-details-marker { display: none; }

.accordion-title-wrapper {
  flex: 1;
  font-size: var(--font-title-accordion);
  font-weight: var(--font-weight-title);
  line-height: var(--line-height);
}

.accordion-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.accordion[open] .accordion-icon { transform: rotate(180deg); }

.accordion-body-wrapper {
  padding: 0 var(--gutter) 20px;
  font-size: var(--font-body);
  line-height: var(--line-height);
  color: var(--color-text-muted);
}

/* ============================================================
   QuoteSection
   ============================================================ */
.quote-section {
  background: var(--color-quote-bg);
  padding: var(--space-40) 0;
  color: var(--color-quote-text, var(--color-text-primary));
  text-align: center;
}

.quote-section__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-20);
}
.quote-section__icon .icon {
  font-size: 56px;
  transform: rotate(180deg);
}

.quote-wrapper {
  padding: 0 var(--gutter);
  font-size: var(--font-quote);
  font-weight: var(--font-weight-quote);
  line-height: var(--line-height);
  margin-bottom: var(--space-40);
}

.quote-detail-wrapper {
  padding: 0 var(--gutter);
}
.quote-author-name {
  font-size: var(--font-body);
  font-weight: 600;
}
.quote-author-title {
  margin-top: var(--space-10);
  font-size: var(--font-detail);
  /* Kitsch 실측: 흰색이 아니라 3번째 액센트 슬롯(연두) — 전용 토큰으로 분리 */
  color: var(--color-quote-author-title);
}

/* ============================================================
   Footer (구조 컨테이너 — 아직 Figma 스펙 없어 임의 구성)
   ============================================================ */
.site-footer {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  padding: var(--space-40) var(--gutter);
}
.site-footer__logo {
  height: 32px;
  margin-bottom: var(--space-20);
}
.site-footer__logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-bottom: var(--space-40);
  font-size: var(--font-body);
}
.site-footer__links a {
  color: var(--color-text-inverse);
  text-decoration: none;
  opacity: 0.8;
}
.site-footer__links a:hover { opacity: 1; }
.site-footer__bottom {
  padding-top: var(--space-20);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--font-detail);
  color: var(--color-text-muted);
}

/* Widget: HorizontalRule (Role 없음, 구조 요소) — FeatureSection/StatSection이 공유 */
.horizontal-rule {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-40) var(--gutter);
}

/* ============================================================
   FeatureSection
   신규 토큰: --font-title-feature (FeatureTitle, 20px Regular) — type-scale.css에 등록됨
   ============================================================ */
.feature-section {
  padding: var(--space-40) 0;
}

/* Widget: FeatureCard — title/body만 사용, 이미지 없음 */
.feature-card {
  padding: 0 var(--gutter);
}
.feature-title-wrapper {
  font-size: var(--font-title-feature);
  font-weight: var(--font-weight-title);
  line-height: var(--line-height);
  color: var(--color-text-primary);
  margin-bottom: var(--space-10);
}
.feature-body-wrapper {
  font-size: var(--font-body);
  line-height: var(--line-height);
  color: var(--color-text-muted);
}

/* ============================================================
   StatSection
   신규 토큰: --font-stat-value (StatValue, 48px), --font-stat-unit (StatUnit, 48px)
   theme-*.css 각 톤 파일에 두 토큰 값 추가 필요.
   font-weight은 기존 토큰 재사용: value=--font-weight-headline(Bold), unit=--font-weight-body(Regular)
   ============================================================ */
.stat-section {
  padding: var(--space-40) 0;
}

/* Widget: StatCard */
.stat-card {
  padding: 0 var(--gutter);
}
.stat-metric-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-20);
}
.stat-value-wrapper {
  font-size: var(--font-stat-value);
  font-weight: var(--font-weight-headline);
  line-height: var(--line-height);
  color: var(--color-text-primary);
}
.stat-unit-wrapper {
  font-size: var(--font-stat-unit);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height);
  color: var(--color-text-primary);
}
.stat-body-wrapper {
  font-size: var(--font-body);
  line-height: var(--line-height);
  color: var(--color-text-muted);
}
/* ============================================================
   CardGridSection — 4개씩 페이지 단위로 렌더되는 2x2 그리드.
   carousel의 .card와는 폭/이미지 비율이 달라 별도 클래스를 쓴다.
   ============================================================ */
.card-grid-section {
  padding: var(--space-40) 0;
}
.card-grid-section .headline-wrapper { margin-bottom: var(--space-20); }

.card-grid-track {
  padding: 0 var(--gutter);
  display: grid; /* 모든 페이지를 같은 칸에 겹쳐 쌓아서, 컨테이너 높이가 항상 가장 큰 페이지 기준으로 고정되게 함 */
}
.card-grid-page {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10) var(--space-10);
  visibility: hidden;
  pointer-events: none;
}
.card-grid-page.is-active {
  visibility: visible;
  pointer-events: auto;
}

.card-grid__item {
  overflow: hidden;
  border-radius: var(--radius-card);
  border: var(--border-card-width, 0) solid var(--color-border-card, transparent);
}
.card-grid__image-frame {
  width: 100%;
  aspect-ratio: 181 / 140;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-image);
}
.card-grid__texts { padding: var(--space-10) var(--card-inset, 0) 0; }
.card-grid__title-wrapper {
  font-size: var(--font-title-card);
  font-weight: var(--font-weight-title);
  line-height: var(--line-height);
  color: var(--color-text-primary);
}
.card-grid__body-wrapper {
  margin-top: var(--space-10);
  font-size: var(--font-detail);
  line-height: var(--line-height);
  color: var(--color-accent-soft);
}

/* ============================================================
   팝업 / 드로어 공용 오버레이
   ============================================================ */
.pp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.pp-overlay--drawer {
  align-items: stretch;
  justify-content: flex-start;
}
.pp-overlay__panel {
  position: relative;
  padding: 6px 6px 24px 6px;
  background: var(--color-surface, #fff);
  border-radius: 32px;
  max-width: 400px;
  width: calc(100% - 40px);
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
}
.pp-overlay--drawer .pp-overlay__panel {
  border-radius: 0;
  max-width: 320px;
  width: 80%;
  max-height: 100%;
  height: 100%;
  text-align: left;
}
.pp-overlay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-surface-muted, #f5f5f5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popup-content__media {
  position: relative;
  margin-bottom: var(--space-20);
}
.popup-content__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-border, #e5e5e5);
  background-size: cover;
  background-position: center;
  border-radius: 28px 28px 0 0;
}
.popup-content__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup-content__headline { margin-bottom: var(--space-10); }
.popup-content__body { color: var(--color-text-muted); line-height: var(--line-height); margin-bottom: var(--space-20); }
.popup-content__buttons { display: flex; gap: var(--space-10); justify-content: center; }

.drawer-content__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-20);
}
.drawer-content__name p { font-weight: var(--font-weight-headline); font-size: var(--font-lead); margin-bottom: var(--space-10); }
.drawer-content__bio p { color: var(--color-text-muted); margin-bottom: var(--space-40); }
.drawer-content__links { display: flex; flex-direction: column; gap: var(--space-20); }
.drawer-content__links a { color: var(--color-text-primary); text-decoration: none; font-size: var(--font-body); }



/* ── ProfilePage (Menu/link-in-bio) ── */
.profile-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FCFCFE;
  padding: var(--topbar-height, 120px) 32px 0; /* Topbar의 음수 margin(겹침 트릭)을 상쇄 — Hero와 달리 흰 배경 콘텐츠라 안 겹쳐야 함. 좌우 여백도 여기서 한 번만 관리 */
  box-sizing: border-box;
}

.profile-page__avatar {
  width: 120px;
  height: 120px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 36px;
  background-size: cover;
  background-position: center;
  border: 1px solid #dfdfe1;
}

.profile-page__name {
  width: 100%;
  
  text-align: left;
  margin-bottom: 10px;
}

.profile-page__name p {
  font-size: 20px;
  font-weight: 500;
  line-height: 145%;
  color: #2E2E30;
  margin: 0;
}

.profile-page__role {
  width: 100%;
  text-align: left;
}

.profile-page__role p {
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  color: #2E2E30;
  margin-bottom: 10px;
}

.profile-page__divider {
  width: 100%;
  height: 1px;
  background: #e9e9eb;
  margin-top: 10px;
  margin-bottom: 20px;
}

.profile-page__description {
  width: 100%;
  text-align: left;
}

.profile-page__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
  color: #000000;
  margin: 0;
}

.profile-page__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Info/Links 두 블록 사이 간격(40px)과 페이지 맨 끝 여백(80px)을 여기서 통째로 관리(2026-08) —
   blockOrder로 두 블록 순서가 바뀌어도 항상 같은 위치(사이/끝)에 같은 값이 적용되게. */
.profile-page__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding-bottom: 80px;
}

/* ── Link item card ── */
.link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: #f2f2f4;
  border: 1px solid #e9e9eb;
  border-radius: 16px;
  text-decoration: none;
  box-sizing: border-box;
}

.link-item__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-item__icon--og,
.link-item__icon--favicon {
  background-size: cover;
  background-position: center;
}
.link-item__icon--favicon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.link-item__icon--fallback .icon {
  font-size: 24px;
  color: #1f1f1f;
}

.link-item__texts {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.link-item__title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-item__desc {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-item__url {
  font-size: 12px;
  font-weight: 400;
  color: #a6a6a8;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-item__menu {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  cursor: pointer;
}