/* ==================================
   HELIO KK — Investor Relations
   Same design system as MeetHelio.com
   ================================== */

:root {
  /* Base Palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f7;
  --color-surface: #ffffff;

  /* Text */
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --text-inverse: #ffffff;

  /* Accent — Apple Blue */
  --accent: #0071e3;
  --accent-hover: #0077ed;

  /* Borders & Shadows */
  --border-color: #d2d2d7;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-heading:
    "Outfit", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:
    "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 980px;

  /* Radius */
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background: var(--color-bg);
}

/* ─── Container ──────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ──────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.93rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 12px 4px;
  font-weight: 500;
}

.btn-secondary:hover {
  text-decoration: underline;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-inverse);
}

/* ─── Navigation ──────────────────── */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: all 0.3s ease;
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-color);
  box-shadow: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.helio-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) opacity(0.9);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ─── Mobile Menu ──────────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1010;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--text-secondary);
}

/* ─── Hero ──────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

.hero-card::before {
  display: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero-title span {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-secondary:hover {
  color: #ffffff;
}

/* ─── Section Common ──────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.title-underline {
  display: none;
}

/* ─── Glass Panel — clean card ──────────────────── */
.glass-panel {
  background: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glass-panel::before {
  display: none;
}

/* ─── About / Overview ──────────────────── */
#overview {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.overview-card {
  padding: 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
}

.overview-card::before {
  display: none;
}

.overview-card p {
  margin-bottom: 20px;
}
.overview-card p:last-child {
  margin-bottom: 0;
}
.overview-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ─── Stats Row ──────────────────── */
.stats-section {
  padding: 0 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Financial Highlights ──────────────────── */
#financials {
  border-bottom: 1px solid var(--border-color);
}

.financial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.financial-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.financial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.financial-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.financial-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.financial-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
}

.financial-card .card-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Corporate Governance ──────────────────── */
#governance {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.governance-card {
  padding: 36px 28px;
  text-align: center;
}

.governance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.governance-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.governance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.governance-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── SEC / Filings ──────────────────── */
#filings {
  border-bottom: 1px solid var(--border-color);
}

.filings-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.filings-card {
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.filing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

.filing-item:last-child {
  border-bottom: none;
}

.filing-item:hover {
  background: var(--color-bg-alt);
}

.filing-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filing-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.filing-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.filing-type {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filings-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ─── IR Contact CTA ──────────────────── */
.ir-cta {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 56px;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-color);
}

.cta-card::after {
  display: none;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── Footer ──────────────────── */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
  background: var(--color-bg-alt);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
  filter: brightness(0) opacity(0.8);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.link-group h4 {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.link-group a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: var(--accent);
}

.link-group .address-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── Press Releases Listing (Main Page) ──────────────────── */
#releases {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.releases-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.releases-list {
  list-style: none;
}

.release-list-item {
  background: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-list-item:last-child {
  margin-bottom: 0;
}

.release-list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.release-list-item a {
  text-decoration: none;
  display: block;
}

.release-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.release-list-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-list-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.release-list-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.release-list-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.release-list-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.release-list-item:hover .release-list-arrow {
  gap: 8px;
}

/* ─── Press Release Article Page ──────────────────── */
.release-article {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.release-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.release-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: gap 0.2s ease;
}

.release-back-link:hover {
  gap: 10px;
}

.release-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.release-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-date {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.release-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.release-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.release-body {
  max-width: 720px;
}

.release-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.release-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.release-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.release-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.release-body ul li {
  padding: 12px 0 12px 20px;
  border-left: 2px solid var(--border-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  transition: border-color 0.2s ease;
}

.release-body ul li:hover {
  border-left-color: var(--accent);
}

.release-body ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.release-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.release-about {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.release-about p {
  font-size: 0.95rem;
}

.release-contact {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--color-bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.release-contact p {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.release-contact-label {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-bottom: 8px !important;
}

/* ─── Animations ──────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}

/* ─── Responsive ──────────────────── */
@media (max-width: 1024px) {
  .financial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 72px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 32px;
  }

  .cta-actions {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .governance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .overview-card {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    gap: 10px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .financial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .financial-card {
    padding: 28px 22px;
  }

  .filing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 22px;
  }

  .footer-container {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
  }
}
