/** Shopify CDN: Minification failed

Line 683:33 Unexpected "("

**/
/* =====================================================
   BALMY BLOG — All-blogs archive page styles
   ===================================================== */

/* ── Section ── */

.bab-section {
  padding: 6rem 0 8rem;
  font-family: var(--font-nunito, sans-serif);
}

/* ── Header ── */

.bab-header {
  text-align: center;
  margin-bottom: 3.6rem;
}

.bab-label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A5D64;
  margin: 0 0 1rem;
}

.bab-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: rgb(var(--color-foreground));
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.bab-subtitle {
  font-size: 1.7rem;
  color: #4A5D64;
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.55;
}

/* ── Tabs ── */

.bab-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.bab-tab {
  font-family: var(--font-nunito, sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #4A5D64;
  background: transparent;
  border: 1.5px solid #BFD8E4;
  border-radius: 100px;
  padding: 0.7rem 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.bab-tab:hover {
  background: #EBF6FB;
  border-color: #7DD4FF;
  color: #273439;
}

.bab-tab--active {
  background: #273439;
  border-color: #273439;
  color: #fff;
}

.bab-tab--active:hover {
  background: #3d4f55;
  border-color: #3d4f55;
  color: #fff;
}

/* ── Grid ── */

.bab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

@media screen and (max-width: 989px) {
  .bab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 749px) {
  .bab-section {
    padding: 4rem 0 6rem;
  }

  .bab-title {
    font-size: 2.6rem;
  }

  .bab-tabs {
    gap: 0.6rem;
    margin-bottom: 2.8rem;
  }

  .bab-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ── Card ── */

.bab-card {
  background: #F9FDFF;
  border: 1.5px solid #BFD8E4;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}

.bab-card:hover {
  box-shadow: 0 8px 32px rgba(39, 52, 57, 0.12);
  transform: translateY(-3px);
}

/* Image */

.bab-card__img-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bab-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}

.bab-card:hover .bab-card__img {
  transform: scale(1.04);
}

.bab-card__img-placeholder {
  aspect-ratio: 16 / 9;
  background: #EBF6FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFD8E4;
}

.bab-card__img-placeholder svg {
  width: 48px;
  height: 48px;
}

/* Body */

.bab-card__body {
  padding: 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

/* Meta row */

.bab-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bab-card__blog-tag {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #4A5D64;
  border-radius: 100px;
  padding: 0.3rem 1rem;
  line-height: 1.4;
  white-space: nowrap;
}

.bab-card__date {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
}

/* Title */

.bab-card__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #273439;
  margin: 0;
  line-height: 1.35;
}

.bab-card__title-link {
  color: inherit;
  text-decoration: none;
}

.bab-card__title-link:hover {
  color: #4A5D64;
}

/* Excerpt */

.bab-card__excerpt {
  font-size: 1.5rem;
  color: #4A5D64;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* Read more */

.bab-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #273439;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #BFD8E4;
  transition: text-decoration-color 0.2s, color 0.2s;
  margin-top: auto;
}

.bab-card__read-more:hover {
  color: #4A5D64;
  text-decoration-color: #4A5D64;
}

/* ── Empty state ── */

.bab-empty {
  text-align: center;
  padding: 6rem 0;
  color: #6b7280;
  font-size: 1.6rem;
}

/* =====================================================
   BLOG HUB — /pages/blog  (balmy-blog-hub.liquid)
   ===================================================== */

.bhub__heading {
  margin: 0 0 28px;
}

/* Tab bar */
.bhub__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.bhub__tab {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid #BFD8E4;
  border-radius: 32px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4A5D64;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  line-height: 1.4;
}

.bhub__tab:hover {
  border-color: #7DD4FF;
  background: #EBF6FB;
  color: #273439;
}

.bhub__tab--active {
  background: #273439;
  color: #fff;
  border-color: #273439;
}

/* Category section */
.bhub__cat {
  margin-bottom: 52px;
}

.bhub__cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #BFD8E4;
}

.bhub__cat-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #273439;
}

.bhub__cat-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4A5D64;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.bhub__cat-link:hover {
  opacity: 1;
  color: #273439;
}

/* Card grid */
.bhub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.bhub__card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #F9FDFF;
  border: 1.5px solid #BFD8E4;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s;
}

.bhub__card:hover {
  box-shadow: 0 8px 32px rgba(39, 52, 57, 0.12);
  transform: translateY(-3px);
}

.bhub__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #EBF6FB;
  flex-shrink: 0;
}

.bhub__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bhub__card:hover .bhub__card-img {
  transform: scale(1.04);
}

.bhub__card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFD8E4;
}

.bhub__card-img-placeholder svg {
  width: 48px;
  height: 48px;
}

.bhub__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 8px;
}

.bhub__card-cat {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A5D64;
  line-height: 1;
}

.bhub__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: #273439;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bhub__card-date {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

.bhub__card-excerpt {
  font-size: 1.3rem;
  line-height: 1.55;
  color: #4A5D64;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0 0;
}

@media (max-width: 989px) {
  .bhub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .bhub__tabs {
    gap: 7px;
    margin-bottom: 32px;
  }
  .bhub__tab {
    padding: 7px 15px;
    font-size: 1.2rem;
  }
  .bhub__cat {
    margin-bottom: 36px;
  }
  .bhub__cat-title {
    font-size: 1.6rem;
  }
  .bhub__grid {
    grid-template-columns: 1fr;
  }
  .bhub__card-body {
    padding: 14px 16px 16px;
  }
  .bhub__card-title {
    font-size: 1.4rem;
  }
}

/* =====================================================
   MAIN BLOG — /blogs/*  (main-blog.liquid)
   ===================================================== */

/* Tag filter */
.mblog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.mblog__tag-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid #BFD8E4;
  border-radius: 32px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4A5D64;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.mblog__tag-btn:hover {
  border-color: #7DD4FF;
  background: #EBF6FB;
  color: #273439;
}

.mblog__tag-btn--active {
  background: #273439;
  color: #fff;
  border-color: #273439;
}

/* Grid */
.mblog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.mblog__card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #F9FDFF;
  border: 1.5px solid #BFD8E4;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s;
}

.mblog__card:hover {
  box-shadow: 0 8px 32px rgba(39, 52, 57, 0.12);
  transform: translateY(-3px);
}

.mblog__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #EBF6FB;
  flex-shrink: 0;
}

.mblog__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mblog__card:hover .mblog__card-img {
  transform: scale(1.04);
}

.mblog__card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFD8E4;
}

.mblog__card-img-placeholder svg {
  width: 48px;
  height: 48px;
}

.mblog__card-tag {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A5D64;
  line-height: 1;
}

.mblog__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 8px;
}

.mblog__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: #273439;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mblog__card-date {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

.mblog__card-excerpt {
  font-size: 1.3rem;
  line-height: 1.55;
  color: #4A5D64;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 2px 0 0;
}

.mblog__pagination {
  margin-top: 48px;
}

@media (max-width: 989px) {
  .mblog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .mblog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mblog__tags {
    gap: 7px;
    margin-bottom: 28px;
  }
  .mblog__tag-btn {
    padding: 7px 15px;
    font-size: 1.2rem;
  }
  .mblog__card-body {
    padding: 14px 16px 16px;
  }
  .mblog__card-title {
    font-size: 1.4rem;
  }
  .mblog__pagination {
    margin-top: 32px;
  }
}

/* =====================================================
   ARTICLE — /blogs/*/article  (main-article.liquid)
   ===================================================== */

/* Override section-blog-post.css first-child and header margin rules */
.article-template > .bart__header,
.article-template header.bart__header {
  margin-top: 0;
  margin-bottom: 0;
  line-height: inherit;
}

.bart__header {
  padding: 28px 0 32px;
}

.bart__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.bart__tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid #BFD8E4;
  border-radius: 32px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4A5D64;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.bart__tag:hover {
  border-color: #7DD4FF;
  background: #EBF6FB;
  color: #273439;
}

.bart__title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #273439;
}

.bart__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.bart__meta-sep {
  opacity: 0.4;
  font-size: 1rem;
}

.bart__hero {
  margin-bottom: 40px;
}

/* Görseli sabit 16:7 oranına kilitle — adapt modunun inline padding-bottom'ını eze */
.bart__hero .media {
  padding-bottom: 0 !important;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.bart__hero .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 749px) {
  .bart__hero .media {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }
}

.bart__content {
  font-size: 1.65rem;
  line-height: 1.75;
  color: #273439;
}

.bart__content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2.2em 0 0.6em;
  line-height: 1.25;
  color: #273439;
}

.bart__content h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 1.8em 0 0.5em;
  color: #273439;
}

.bart__content p {
  margin: 0 0 1.4em;
}

.bart__content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 3px solid #273439;
  background: #EBF6FB;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #4A5D64;
}

.bart__content blockquote p {
  margin: 0;
}

.bart__content img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  /* .rte img'nin Dawn border/shadow'unu sıfırlıyoruz */
  border: none;
  box-shadow: none;
}

/* Tablo — yatay taşma koruması + okunabilir stil */
.bart__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
  line-height: 1.5;
  margin: 1.8em 0;
}

.bart__content .bart__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1.5px solid #BFD8E4;
  margin: 1.8em 0;
}

.bart__content .bart__table-wrap table {
  margin: 0;
  border: none;
  border-radius: 0;
  min-width: 480px;
}

.bart__content table th,
.bart__content table td {
  padding: 10px 14px;
  border: 1px solid #BFD8E4;
  text-align: left;
  vertical-align: top;
}

.bart__content table th {
  background: #EBF6FB;
  font-weight: 700;
  color: #273439;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.bart__content table tr:nth-child(even) td {
  background: rgba(235, 246, 251, 0.4);
}

.bart__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #4A5D64;
}

.bart__content ul,
.bart__content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.bart__content li {
  margin-bottom: 0.4em;
}

.bart__share {
  margin-top: 40px;
}

.bart__footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1.5px solid #BFD8E4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bart__footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bart__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #4A5D64;
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
}

.bart__back:hover {
  color: #273439;
  gap: 10px;
}

@media (max-width: 749px) {
  .bart__header {
    padding: 16px 0 24px;
  }
  .bart__title {
    font-size: 2.8rem;
  }
  .bart__content {
    font-size: 1.55rem;
  }
  .bart__content h2 {
    font-size: 2rem;
  }
  .bart__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
  }
}

/* =====================================================
   BREADCRUMB  (snippets/balmy-breadcrumb.liquid)
   ===================================================== */

.bbc {
  padding: 14px 0 0;
  margin-bottom: 18px;
}

.bbc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.bbc__item {
  display: flex;
  align-items: center;
}

.bbc__sep {
  margin: 0 6px;
  opacity: 0.35;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.bbc__link {
  color: #4A5D64;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.bbc__link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bbc__current {
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

@media (max-width: 749px) {
  .bbc {
    padding: 10px 0 0;
    margin-bottom: 12px;
  }
  .bbc__list {
    font-size: 1.1rem;
  }
  .bbc__current {
    max-width: 160px;
  }
}

/* =====================================================
   FAQ ACCORDION  (checkbox + label, no JS)
   ===================================================== */

.faq-item {
  border-bottom: 1.5px solid #BFD8E4;
}

.faq-item:first-of-type,
.faq-item:first-child {
  border-top: 1.5px solid #BFD8E4;
}

/* Checkbox'ı gizle */
.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Label = tıklanabilir başlık */
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 1.55rem;
  font-weight: 700;
  color: #273439;
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.15s;
  user-select: none;
}

.faq-label:hover {
  color: #4A5D64;
}

/* + ikonu — checked'te 45° döner → × görünümü */
.faq-label::after {
  content: '+';
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: #4A5D64;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s ease, color 0.15s;
}

.faq-item input:checked ~ .faq-label::after {
  transform: rotate(45deg);
  color: #273439;
}

/* İçerik: varsayılan kapalı */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item input:checked ~ .faq-body {
  max-height: 800px;
}

.faq-body p {
  margin: 0 0 20px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #4A5D64;
  padding-bottom: 4px;
}

.faq-body p:first-child {
  padding-top: 4px;
}

.faq-body strong {
  color: #273439;
  font-weight: 700;
}

.faq-body ul,
.faq-body ol {
  padding-left: 1.6em;
  margin: 0 0 20px;
  color: #4A5D64;
  font-size: 1.5rem;
  line-height: 1.7;
}

.faq-body li {
  margin-bottom: 6px;
}

.faq-body a {
  color: #4A5D64;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-body a:hover {
  color: #273439;
}

/* =====================================================
   CATEGORY / INFO CARD LIST  (.cat-grid / .cat-card)
   ===================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 2em 0;
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: #F9FDFF;
  border: 1.5px solid #BFD8E4;
  border-radius: 12px;
  overflow: hidden;
}

.cat-card-header {
  padding: 12px 18px 10px;
  background: #EBF6FB;
  border-bottom: 1.5px solid #BFD8E4;
  position: relative;
}

/* Üst kenar aksanı */
.cat-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #273439;
  border-radius: 12px 12px 0 0;
}

.cat-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #273439;
  line-height: 1.4;
  margin: 0;
}

.cat-card > p {
  flex: 1;
  margin: 0;
  padding: 14px 18px 16px;
  font-size: 1.45rem;
  line-height: 1.65;
  color: #4A5D64;
}

.cat-card > p strong {
  color: #273439;
  font-weight: 700;
}

.cat-card > p a {
  color: #4A5D64;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cat-card > p a:hover {
  color: #273439;
}

@media (max-width: 599px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* examples-tag inside cat-card: reduce p bottom padding when tags follow */
.cat-card > p:has(+ .examples-tag) {
  padding-bottom: 8px;
}

.examples-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 16px;
}

.etag {
  display: inline-block;
  padding: 4px 12px;
  background: #EBF6FB;
  border: 1.5px solid #BFD8E4;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4A5D64;
  line-height: 1.4;
  white-space: nowrap;
}

/* =====================================================
   STAT BAR  (.stat-bar / .stat-card)
   ===================================================== */

.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2em 0;
  padding: 24px 28px;
  background: #EBF6FB;
  border: 1.5px solid #BFD8E4;
  border-radius: 12px;
}

.stat-card {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 4px 16px;
  border-right: 1.5px solid #BFD8E4;
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #273439;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 1.3rem;
  color: #4A5D64;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 599px) {
  .stat-bar {
    padding: 18px 20px;
    gap: 16px;
  }
  .stat-card {
    flex-basis: 100%;
    border-right: none;
    border-bottom: 1.5px solid #BFD8E4;
    padding: 0 0 16px;
  }
  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .stat-num {
    font-size: 2rem;
  }
}

/* =====================================================
   SAFETY GRID  (.safety-grid / .safety-item)
   ===================================================== */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 2em 0;
  padding: 20px;
  background: #F9FDFF;
  border: 1.5px solid #BFD8E4;
  border-radius: 12px;
}

.safety-item {
  padding: 10px 14px;
  border-left: 3px solid #BFD8E4;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #4A5D64;
  transition: border-left-color 0.15s;
}

.safety-item:hover {
  border-left-color: #273439;
}

.safety-item strong {
  color: #273439;
  font-weight: 700;
  margin-right: 3px;
}

@media (max-width: 749px) {
  .safety-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 6px;
  }
}
