/* Landing Page Redesign: Atisbo Experts Alignment */

@font-face {
  font-family: "Space Grotesk";
  src: url("/static/fonts/space-grotesk-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/static/fonts/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/static/fonts/space-grotesk-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/static/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --exp-bg: #f5f2eb;
  --exp-paper: #ffffff;
  --exp-panel: #f0ebe2;
  --exp-ink: #11131a;
  --exp-muted: #5f6470;
  --exp-line: rgba(17, 19, 26, 0.10);
  --exp-line-strong: rgba(17, 19, 26, 0.16);
  --exp-accent: #b95d39;
  --exp-accent-hover: #9c4b2b;
  --exp-accent-disabled: #e8a588;
  --exp-dark: #101117;
  --exp-content: 1240px;
  --exp-header-height: 64px;
  --exp-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --exp-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  --exp-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  --exp-radius: 18px;
  --exp-radius-sm: 12px;
}

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

body.exp-body {
  margin: 0;
  padding: 0;
  background-color: var(--exp-bg);
  color: var(--exp-ink);
  font-family: var(--exp-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.exp-container {
  width: 100%;
  max-width: var(--exp-content);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.exp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 235, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--exp-line);
}

.exp-header-inner {
  height: var(--exp-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.exp-logo img {
  height: 32px;
  width: auto;
}

.exp-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exp-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--exp-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.exp-lang-pill {
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--exp-muted);
  font-family: var(--exp-mono);
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.16s ease;
}

.exp-lang-pill:hover:not(.active) {
  color: var(--exp-ink);
  background: rgba(17, 19, 26, 0.05);
}

.exp-lang-pill.active {
  background: var(--exp-ink);
  color: #ffffff;
}

/* Main content */
.exp-main {
  flex: 1;
  padding-bottom: 64px;
}

/* Page Hero */
.exp-hero {
  padding: clamp(32px, 5vh, 52px) 0 36px;
}

.exp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.exp-eyebrow {
  font-family: var(--exp-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--exp-accent);
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.exp-hero h1 {
  font-family: var(--exp-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  color: var(--exp-ink);
}

.exp-hero-lead {
  max-width: 620px;
  margin: 0 0 24px 0;
  color: var(--exp-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.exp-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.exp-meta-tag {
  padding: 6px 14px;
  border: 1px solid var(--exp-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--exp-mono);
  font-size: 11px;
  color: var(--exp-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Visual Figure */
.exp-visual-card {
  margin: 0;
  border-radius: var(--exp-radius);
  overflow: hidden;
  position: relative;
  background: #dcd6cc;
  border: 1px solid var(--exp-line);
  box-shadow: 0 20px 45px rgba(17, 19, 26, 0.08);
  height: clamp(380px, 48vh, 460px);
}

.exp-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exp-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 11, 14, 0.72));
}

.exp-visual-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #ffffff;
}

.exp-visual-caption span {
  font-family: var(--exp-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: #e2ded8;
  letter-spacing: 0.05em;
}

.exp-visual-caption strong {
  font-family: var(--exp-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Accessibility visually hidden */
.exp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Recruit ticker banner */
.exp-recruit-desktop {
  display: block;
}

.exp-recruit-mobile {
  display: none;
}

/* Desktop: Option 2 Enhanced In-place Recruit Banner */
@media (min-width: 901px) {
  .exp-recruit-bar.exp-recruit-desktop {
    margin-top: 26px;
    padding: 10px 22px 10px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(185, 93, 57, 0.22);
    border-radius: 999px;
    box-shadow: 0 6px 22px rgba(185, 93, 57, 0.07), 0 2px 6px rgba(17, 19, 26, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    max-width: 100%;
  }

  .exp-recruit-bar.exp-recruit-desktop:hover {
    border-color: #B95D39;
    box-shadow: 0 8px 28px rgba(185, 93, 57, 0.12), 0 3px 8px rgba(17, 19, 26, 0.06);
    transform: translateY(-1px);
  }

  .exp-recruit-desktop .land-recruit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
  }

  .exp-recruit-desktop .land-recruit-prefix {
    font-size: 13px;
    font-weight: 700;
    color: #B95D39;
    background: #FBF0EB;
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    letter-spacing: 0.01em;
  }

  .exp-recruit-desktop .land-recruit-prefix::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: exp-pulse 2s infinite ease-in-out;
  }

  @keyframes exp-pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.15);
      opacity: 0.75;
    }
  }

  .exp-recruit-desktop .land-roll {
    height: 2.4em;
    font-size: 15px;
    width: auto;
    max-width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
  }

  .exp-recruit-desktop .land-roll-track > span {
    height: 2.4em;
    padding: 0;
    display: block;
    box-sizing: border-box;
  }

  .exp-recruit-desktop .land-roll-pill {
    font-size: 15px;
    font-weight: 600;
    color: #11131A;
    background: transparent;
    padding: 0 4px;
    white-space: nowrap;
    height: 2.4em;
    line-height: 2.4em;
    display: block;
    transition: color 0.15s ease;
  }

  .exp-recruit-desktop .land-roll:hover .land-roll-pill,
  .exp-recruit-desktop .land-roll:focus-visible .land-roll-pill {
    background: transparent;
  }

  .exp-recruit-bar.exp-recruit-desktop:hover .land-roll-pill {
    color: #B95D39;
  }

  .exp-recruit-desktop .land-recruit::after {
    content: "→";
    margin-left: 2px;
    color: #B95D39;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .exp-recruit-bar.exp-recruit-desktop:hover .land-recruit::after {
    transform: translateX(4px);
  }
}

.exp-recruit-bar {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--exp-line);
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
  max-width: 100%;
}

.exp-recruit-prefix {
  font-family: var(--exp-mono);
  font-size: 11px;
  color: var(--exp-accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* Body Section */
.exp-body-section {
  padding-top: 12px;
}

.exp-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

/* Form Panel */
.exp-panel {
  background: var(--exp-paper);
  border: 1px solid var(--exp-line);
  border-radius: var(--exp-radius);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 4px 20px rgba(17, 19, 26, 0.03);
}

.exp-panel-header {
  border-bottom: 1px solid var(--exp-line);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.exp-panel-header h2 {
  font-family: var(--exp-display);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
}

.exp-panel-header p {
  color: var(--exp-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Dual Access Area (QR + Email) */
.exp-dual-access {
  display: grid;
  grid-template-columns: 220px 1px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* QR column */
.exp-qr-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.exp-qr-box {
  width: 172px;
  height: 172px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--exp-line-strong);
  border-radius: var(--exp-radius-sm);
  box-shadow: 0 4px 12px rgba(17, 19, 26, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.exp-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.exp-qr-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--exp-ink);
  margin: 0 0 6px 0;
}

.exp-qr-desc {
  font-size: 12px;
  color: var(--exp-muted);
  line-height: 1.5;
  margin: 0;
}

/* Divider */
.exp-divider {
  background: var(--exp-line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-divider-badge {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--exp-paper);
  border: 1px solid var(--exp-line);
  border-radius: 999px;
  padding: 4px 8px;
  font-family: var(--exp-mono);
  font-size: 11px;
  color: var(--exp-muted);
  text-transform: uppercase;
}

/* Email Sign-in column */
.exp-auth-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-auth-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--exp-ink);
  margin: 0 0 6px 0;
}

.exp-auth-desc {
  font-size: 13px;
  color: var(--exp-muted);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.exp-field {
  margin-bottom: 16px;
}

.exp-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--exp-ink);
  margin-bottom: 8px;
}

.exp-input-wrap {
  position: relative;
  width: 100%;
}

.exp-input {
  width: 100%;
  height: 48px;
  border: 1px solid #d8d4cb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--exp-ink);
  background: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.exp-input:hover {
  border-color: #9e9c98;
}

.exp-input:focus {
  border-color: var(--exp-ink);
  box-shadow: 0 0 0 1px var(--exp-ink);
}

.exp-input::placeholder {
  color: #b5b3ad;
}

.exp-input.has-error {
  border-color: #ffb9b0;
  box-shadow: 0 0 0 1px #ffb9b0;
}

.exp-btn-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: var(--exp-accent-disabled);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.exp-btn-submit.active {
  background: var(--exp-accent);
  box-shadow: 0 6px 16px rgba(185, 93, 57, 0.25);
}

.exp-btn-submit.active:hover {
  background: var(--exp-accent-hover);
}

.exp-btn-submit:focus-visible {
  outline: 2px solid var(--exp-ink);
  outline-offset: 2px;
}

/* Resend Button inside input */
.exp-input-suffix {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.exp-resend-btn {
  background: none;
  border: none;
  font-size: 13px;
  padding: 4px 6px;
  font-family: inherit;
  color: var(--exp-accent);
  cursor: pointer;
  font-weight: 500;
}

.exp-resend-btn:disabled {
  color: #8c8a84;
  cursor: default;
}

/* Alert notices */
.exp-alert {
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.exp-alert.info {
  background: #f3f1ed;
  color: #47453f;
}

.exp-alert.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Aside Info Cards */
.exp-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-info-card {
  border: 1px solid var(--exp-line);
  border-radius: var(--exp-radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(17, 19, 26, 0.02);
}

.exp-card-label {
  font-family: var(--exp-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--exp-muted);
  letter-spacing: 0.08em;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.exp-info-card h3 {
  font-family: var(--exp-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
  color: var(--exp-ink);
}

.exp-info-card p {
  color: var(--exp-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Site Footer */
.exp-footer {
  background: var(--exp-dark);
  color: #ffffff;
  padding: 56px 0 28px;
  margin-top: auto;
}

.exp-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 40px;
  margin-bottom: 24px;
}

.exp-footer-brand-title {
  font-family: var(--exp-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.exp-footer-brand-copy {
  color: #9295a0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.exp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-footer-contact-label {
  font-family: var(--exp-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9295a0;
  margin: 0;
}

.exp-footer-email {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.exp-footer-email:hover {
  color: var(--exp-accent);
}

.exp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6d717d;
  font-family: var(--exp-mono);
  font-size: 11px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .exp-container {
    padding: 0 16px;
  }

  .exp-recruit-bar.exp-recruit-desktop,
  .exp-recruit-desktop {
    display: none;
  }

  .exp-recruit-mobile {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
  }

  .exp-recruit-mobile .exp-recruit-bar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 6px 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
  }

  .exp-recruit-mobile .land-recruit {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: min(13px, 3.2vw);
    margin: 0;
  }

  .exp-recruit-mobile .land-recruit-prefix {
    font-size: min(12px, 3vw);
    flex-shrink: 0;
  }

  .exp-recruit-mobile .land-roll {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    height: 2.2em;
  }

  .exp-recruit-mobile .land-roll-track > span {
    height: 2.2em;
    padding: 0.3em 0;
  }

  .exp-recruit-mobile .land-roll-pill {
    height: 1.6em;
    line-height: 1.6em;
    padding: 0 8px;
    font-size: min(12px, 3vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    max-width: 100%;
  }

  .exp-hero {
    padding: 24px 0 20px;
  }

  .exp-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exp-hero-copy {
    min-width: 0;
    width: 100%;
  }

  .exp-eyebrow {
    margin-bottom: 10px;
  }

  .exp-hero h1 {
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.2;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .exp-hero-lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .exp-meta-tags {
    gap: 6px;
    margin-bottom: 0;
  }

  .exp-meta-tag {
    padding: 4px 10px;
    font-size: 11px;
  }

  .exp-visual-card {
    height: 220px;
    border-radius: var(--exp-radius-sm);
    margin: 0;
    width: 100%;
  }

  .exp-visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 11px;
  }

  .exp-body-section {
    padding-top: 14px;
    padding-bottom: 32px;
  }

  .exp-body-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exp-panel {
    padding: 24px 18px;
    border-radius: var(--exp-radius-sm);
  }

  .exp-panel-header h2 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .exp-panel-header p {
    font-size: 14px;
    line-height: 1.55;
  }

  .exp-dual-access {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .exp-qr-col {
    padding: 4px 0 0;
    align-items: center;
    text-align: center;
  }

  .exp-qr-box {
    padding: 10px;
    border-radius: 10px;
  }

  .exp-qr-box img {
    width: 136px;
    height: 136px;
  }

  .exp-qr-title {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .exp-qr-desc {
    font-size: 13px;
    line-height: 1.45;
    max-width: 260px;
    margin: 0 auto;
  }

  .exp-divider {
    height: 1px;
    width: 100%;
    margin: 4px 0;
    background: var(--exp-line);
    position: relative;
  }

  .exp-divider-badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    padding: 2px 10px;
    background: var(--exp-paper);
  }

  .exp-auth-col {
    padding: 4px 0 0;
  }

  .exp-auth-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .exp-auth-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .exp-btn-submit {
    height: 44px;
    font-size: 15px;
    margin-top: 8px;
  }

  .exp-aside {
    gap: 14px;
  }

  .exp-info-card {
    padding: 20px 18px;
    border-radius: var(--exp-radius-sm);
  }

  .exp-info-card h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .exp-info-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .exp-footer {
    padding: 36px 0 28px;
  }

  .exp-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exp-footer-contact {
    text-align: left;
    align-items: flex-start;
  }

  .exp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-top: 24px;
    padding-top: 16px;
    font-size: 11px;
  }
}
