/*
  香皂小站 · 全站样式（配合 Bootstrap 再盖一层自己的颜色和布局）
  大致顺序：颜色变量 → 顶栏导航 → 页脚 → 首页大横幅 → 精选卡片区 → 商城 → 设备展示 → 内页横幅/历史时间轴 → 小贴士面板 → 其它零碎
*/

:root {
  --color-primary: #232323;
  --color-secondary: #f8f2ef;
  --color-accent: #e5e5e5;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "PingFang SC", "Microsoft YaHei", sans-serif;
  --transition-speed: 0.3s;
}

/* ---------- 整页默认字体、背景色 ---------- */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-primary);
  background-color: var(--color-secondary);
  overflow-x: hidden;
}

/* ---------- 顶栏：固定在最上面，透明页会配合 JS 加 .scrolled ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  padding: 1rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 70px;
}

#mainNavbar {
  --bs-navbar-bg: var(--color-primary);
}

body.nav-transparent #mainNavbar:not(.scrolled) {
  --bs-navbar-bg: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.nav-transparent #mainNavbar.scrolled {
  --bs-navbar-bg: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.nav-solid #mainNavbar {
  --bs-navbar-bg: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 1rem 0 !important;
    min-height: 70px !important;
  }

  .navbar-collapse {
    background-color: var(--color-primary);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
  }

  body.nav-transparent #mainNavbar:not(.scrolled) {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body.nav-transparent #mainNavbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding: 0.8rem 0 !important;
    min-height: 65px !important;
  }
}

.navbar-brand {
  font-weight: 700;
  color: var(--color-secondary) !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--color-secondary) !important;
  font-weight: 500;
  padding: 0.8rem 1rem;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

body.nav-solid main {
  padding-top: 5.5rem;
}

/* ---------- 页脚：深色底、栏目链接、组员与素材声明 ---------- */
.footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: rgba(248, 242, 239, 0.8);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.footer a:hover {
  color: var(--color-secondary);
}

.footer .text-muted-foot {
  color: rgba(248, 242, 239, 0.65);
  font-size: 0.85rem;
}

/* ---------- 首页第一屏：整屏高的大图横幅 + 标题按钮 ---------- */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(35, 35, 35, 0.7) 0%,
    rgba(35, 35, 35, 0.5) 50%,
    rgba(35, 35, 35, 0.3) 100%
  );
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 600px;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--color-secondary);
  text-align: left;
  white-space: normal;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--color-secondary);
  opacity: 0.9;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-buttons .btn {
  min-width: 140px;
}

.btn-primary-custom {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.hero-buttons .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons .btn-outline-primary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- 灰底区块：首页「精选」卡片、小贴士也复用这个区 ---------- */
.cases-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.cases-section--continue {
  padding-top: 0;
}

/* 接续上一灰底区块时去掉默认顶距，此处单独补回与 .cases-section 一致的上方留白 */
.cases-section--tips {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 首页「新闻资讯」：原小贴士位置（压缩纵向占位） */
.cases-section--news {
  padding-top: 48px;
  padding-bottom: 56px;
}

/* 盖掉全站 .section-title 的大下边距与大标题（新闻区要紧凑） */
#news .section-title.home-news-section__head {
  margin-bottom: 0.5rem;
}

#news .section-title.home-news-section__head h2.home-news-section__title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.35rem;
}

#news .section-title.home-news-section__head h2.home-news-section__title::after {
  bottom: -6px;
  width: 42px;
  height: 2px;
}

.home-news-section__sub {
  line-height: 1.45;
}

.home-news-list {
  margin: 0;
  padding: 0;
}

.home-news-item {
  list-style: none;
}

.home-news-item + .home-news-item {
  margin-top: 0.4rem;
}

.home-news-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-news-link:hover {
  border-color: #ced4da;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  color: inherit;
}

.home-news-date {
  flex: 0 0 4.75rem;
  font-size: 0.75rem;
  color: #6c757d;
  font-variant-numeric: tabular-nums;
  padding-top: 0.12rem;
}

.home-news-title {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-news-arrow {
  flex: 0 0 auto;
  color: #adb5bd;
  font-size: 0.7rem;
  padding-top: 0.28rem;
}

/* 首页新闻区 · 右侧轮播（限制高度，去掉底部圆点指示器） */
.home-news-carousel-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.85rem 1rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
}

.home-news-carousel__heading {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.home-news-carousel__lead {
  line-height: 1.4;
  font-size: 0.8rem;
}

.home-news-carousel__viewport {
  max-height: 11rem;
}

.home-news-carousel__link {
  text-decoration: none;
  background: #e9ecef;
}

.home-news-carousel__link:hover {
  opacity: 0.96;
}

.home-news-carousel__img {
  width: 100%;
  height: 11rem;
  max-height: 11rem;
  object-fit: cover;
  vertical-align: middle;
}

.home-news-carousel .carousel-control-prev,
.home-news-carousel .carousel-control-next {
  width: 10%;
  min-width: 2rem;
  opacity: 0.88;
}

.home-news-carousel .carousel-control-prev-icon,
.home-news-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  transform: scale(0.85);
}

@media (min-width: 992px) {
  .home-news-section__row {
    margin-top: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .home-news-link {
    flex-wrap: wrap;
  }

  .home-news-date {
    flex: 0 0 100%;
    padding-top: 0;
  }

  .home-news-arrow {
    display: none;
  }
}

/* ---------- 商城页：商品卡片、购物车面板、数量按钮等 ---------- */
.shop-main {
  padding-top: 2rem;
  overflow-x: hidden;
}

.shop-main .row > [class*="col-"] {
  min-width: 0;
}

.case-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.case-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.case-image-placeholder {
  height: 250px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-image-placeholder.case-has-image {
  background: #2c3e50;
}

.case-card-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.case-card-fallback {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.25rem;
  gap: 0.35rem;
  max-width: 100%;
}

.case-card-fallback-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3d4f5f;
  line-height: 1.35;
}

.case-card-fallback-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
}

.shop-product-fallback .case-card-fallback-title {
  font-size: 1.05rem;
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 1rem;
  color: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.case-overlay > div {
  width: 100%;
  margin-top: 0;
}

.case-view-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.case-card:hover .case-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.case-card:hover .case-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

/* ---------- 首页「案例展示」四宫格（原皂类展示，可与文化页精品回顾同源） ---------- */
.equipment-section {
  padding: 80px 0;
}

.equipment-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.equipment-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.equipment-card-link--static {
  cursor: default;
  pointer-events: none;
}

.equipment-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.equipment-card-link:hover .equipment-card {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.equipment-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.equipment-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 首页「联系我们」 ---------- */
#contact {
  padding: 100px 0;
  background: var(--color-secondary);
}

#contact .section-title h2 {
  color: var(--color-primary);
}

#contact .section-title h2::after {
  background: var(--color-primary);
}

#contact .btn-primary-custom {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-secondary);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#contact .btn-primary-custom:hover {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ---------- 内页（历史/文化/商城）顶上的横幅图，比首页矮一点 ---------- */
.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-content {
  text-align: center;
  color: var(--color-secondary);
  z-index: 1;
  max-width: none;
  width: 100%;
}

.page-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-hero .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* ---------- 历史/文化等内页：横幅下面那块正文区域 ---------- */
.soap-page-block {
  padding: 4rem 0;
  background: #f8f9fa;
}

.soap-page-block--cream {
  background: var(--color-secondary);
}

/* ---------- 文化传播页 · 案例展示（外链官网） ---------- */
.culture-cases {
  margin-top: 0;
}

.culture-case-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.culture-case-link:hover {
  color: inherit;
}

.culture-case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.culture-case-link:hover .culture-case-card {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.culture-case-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9ecef;
}

.culture-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-case-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  padding: 1rem;
  font-weight: 600;
  color: #6c757d;
  text-align: center;
}

.culture-case-body {
  padding: 1rem 1.25rem 1.25rem;
}

.culture-case-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.culture-case-cta {
  font-size: 0.875rem;
  color: #0d6efd;
}

.culture-case-link:hover .culture-case-cta {
  text-decoration: underline;
}

.soap-timeline .list-group-item {
  cursor: pointer;
  border-radius: 8px !important;
  margin-bottom: 8px;
  border: 1px solid #e9ecef;
}

.soap-timeline .list-group-item.active {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.shop-add-btn {
  margin-top: 0.75rem;
}

.shop-toolbar {
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.shop-product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.shop-product-media {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  background: #e8ecf1;
  overflow: hidden;
}

.shop-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.shop-product-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #4a5568;
  font-size: 1.05rem;
}

.shop-product-body {
  padding: 1.25rem;
  flex: 1 1 auto;
  background: #fff;
  position: relative;
  z-index: 2;
}

.shop-product-title {
  color: var(--color-primary);
  font-weight: 600;
}

.shop-product-note {
  color: #5c6678 !important;
}

.shop-product-price {
  color: var(--color-primary);
}

.shop-cart-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.shop-cart-thumb--empty {
  display: inline-block;
  vertical-align: middle;
  background: #e8ecf1;
  border-radius: 8px;
}

.shop-cart-anchor {
  scroll-margin-top: 5.5rem;
}

.shop-cart-panel {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}

.shop-qty-btn {
  min-width: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.shop-qty-num {
  min-width: 1.75rem;
}

.shop-qty-input {
  width: 4.25rem;
}

.shop-cart-line-actions {
  align-items: center;
}

/* ---------- 首页「今日小贴士」白卡片 ---------- */
.tip-panel {
  max-width: 40rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.tip-panel__head {
  padding: 1.5rem 1.5rem 1.125rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.6) 0%, #fff 100%);
}

.tip-panel__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.tip-panel__body {
  padding: 1.35rem 1.5rem 1.35rem;
}

.tip-panel__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 1.125rem;
  text-align: left;
}

.tip-panel__label {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 0.15em;
}

.tip-panel__actions {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

@media (min-width: 576px) {
  .tip-panel__title {
    font-size: 1.5rem;
  }

  .tip-panel__text {
    font-size: 1.05rem;
  }
}

.load-error {
  background: #fee;
  padding: 16px;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .hero-title,
  .page-hero .hero-title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title,
  .page-hero .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title,
  .page-hero .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-hero {
    height: 50vh;
    min-height: 300px;
  }

  .page-hero .hero-title {
    font-size: 2.5rem;
  }

  .page-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    height: 70vh;
  }

  .hero-title,
  .page-hero .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
    width: auto;
    align-self: flex-start;
  }
}
