#brand-blog .product-card {
  width: 250px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 430px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-family: sans-serif;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.2s ease;
}

#brand-blog .product-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

#brand-blog .product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
}

#brand-blog .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  background: #EBEFE7;
}

#brand-blog .title-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
}

#brand-blog .product-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  flex: 1;
  color: #213629;
}

#brand-blog .price-tag {
  color: #000;
  font-weight: 700;
  padding: 4px 0;
  font-size: 14px;
  white-space: nowrap;
}

#brand-blog .features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: #333;
}

#brand-blog .features li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

#brand-blog .features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4F6B57;
}

#brand-blog .cta-button {
  margin-top: auto;
  text-align: center;
  background-color: #4F6B57;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

#brand-blog .product-card:hover .cta-button {
  background-color: #213629;
}

#brand-blog .splide__slide {
  margin-right: 10px;
}

#brand-blog .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  position: static !important;
}

#brand-blog .splide__arrow {
  position: static !important;
  transform: none !important;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

#brand-blog .splide__arrow img {
  width: 24px;
  height: 24px;
  display: block;
}
#brand-blog .splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    padding-bottom: 1em;
}

#brand-blog .splide__pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}

#brand-blog .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #cbd5ce;
}

#brand-blog .splide__pagination__page.is-active {
  background: #213629;
}

#brand-blog .splide--disabled .splide__track {
  display: flex !important;
  justify-content: center;
  overflow: visible !important;
  visibility: visible !important;
}

#brand-blog .splide--disabled .splide__list {
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

#brand-blog .splide--disabled .splide__slide {
  display: block !important;
  width: auto !important;
}

#brand-blog .splide--disabled .splide__arrows,
#brand-blog .splide--disabled .splide__pagination {
  display: none !important;
}