.hps-carousel-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hps-carousel-wrapper {
  padding: 10px 0 30px 0;
}

.hps-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hps-card:hover {
  transform: translateY(-4px);
}

.hps-card__link {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hps-card__thumb-wrapper {
  position: relative;
  width: 100%;
}

.hps-card__thumb img {
  width: 100%;
  height: var(--hps-image-height, 200px);
  object-fit: cover;
  display: block;
}

.hps-card__no-image {
  width: 100%;
  height: var(--hps-image-height, 200px);
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hps-card__no-image span {
  color: #cccccc;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hps-card__category-badge {
  background: #f0f0f0;
  color: #555;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}

.hps-card__body {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hps-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hps-card__date {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.hps-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

.hps-card__excerpt {
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.6;
  opacity: 0.8;
}

.hps-card__readmore {
  margin-top: auto;
  padding-top: 15px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: bold;
}

.hps-card__readmore span::after {
  content: '\00a0\2192';
  margin-left: 2px;
}

.hps-standard-slider:not(.is-initialized) {
  visibility: visible !important;
}

.hps-standard-slider .splide__arrows {
  position: static;
}

.hps-standard-slider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.hps-standard-slider .splide__arrow:hover {
  background-color: #f8f8f8;
  opacity: 1;
}

.hps-standard-slider .splide__arrow svg {
  fill: #333;
  width: 18px;
  height: 18px;
}

.hps-standard-slider .splide__arrow--prev {
  left: 10px;
}

.hps-standard-slider .splide__arrow--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.hps-standard-slider .splide__arrow--next {
  right: 10px;
}

.hps-standard-slider .splide__arrow--next:hover {
  transform: translateY(-50%) translateX(2px);
}

@media screen and (max-width: 767px) {
  .hps-standard-slider .splide__arrow {
    width: 28px;
    height: 28px;
  }

  .hps-standard-slider .splide__arrow--prev {
    left: 5px;
  }

  .hps-standard-slider .splide__arrow--next {
    right: 5px;
  }
}

.hps-standard-slider .splide__pagination {
  bottom: -1.5em;
  padding: 0;
}

.hps-standard-slider .splide__pagination__page {
  background: #fff;
  border: 1px solid #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 4px;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.hps-standard-slider .splide__pagination__page:hover {
  background: #f0f0f0;
  border-color: #999;
  opacity: 1;
}

.hps-standard-slider .splide__pagination__page.is-active {
  background: #333;
  border-color: #333;
  transform: scale(1.2);
  opacity: 1;
}