.block_home_category_wrapper {
  width: 100%;
  position: relative;
}

/* Desktop only (>1024px): single sticky strip; per-section strip hidden */
@media (min-width: 1025px) {
  .block_home_category_wrapper__strip_container {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 100%;
	  max-width: var(--container-width);
	  transform: translatex(50%);
    pointer-events: none;
    z-index: 2;
  }

  .block_home_category_wrapper__strip_container .block_home_category__category_strip_desktop_sticky {
    pointer-events: auto;
    position: sticky;
    top: 160px;
    transition: background-color 0.35s ease;
	    right: 0;
	  transform: translateX(118px);
  }

  .block_home_category__category_strip_desktop_sticky .block_home_category__category_strip_icon,
  .block_home_category__category_strip_desktop_sticky .block_home_category__category_strip_name,
  .block_home_category__category_strip_desktop_sticky .block_home_category__category_strip_all {
    transition: background-color 0.35s ease;
  }

  .block_home_category__category_strip--section {
    display: none !important;
  }
}

@media (min-width: 1330px) and (max-width: 1480px) {
  .block_home_category_wrapper__strip_container .block_home_category__category_strip_desktop_sticky {
    transform: translateX(88px);
	  width: 66px;
  }
}

@media (min-width: 1250px) and (max-width: 1330px) {
  .block_home_category_wrapper__strip_container .block_home_category__category_strip_desktop_sticky {
    transform: translateX(10px);
	  width: 66px;
  }
}


@media (min-width: 1025px) and (max-width: 1250px) {
  .block_home_category_wrapper__strip_container .block_home_category__category_strip_desktop_sticky {
    transform: translateX(-14px);
	  width: 66px;
  }
}

@media (max-width: 1024px) {
  .block_home_category_wrapper__strip_container {
    display: none !important;
  }
}

.block_home_category {
  background-color: var(--color-bg);
  margin-bottom: 80px;
}

.block_home_category__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 64px 80px 32px;
  background-color: var(--color-secondary);
  position: relative;
}

.block_home_category__inner {
  width: 100%;
}

.block_home_category__section_title {
  margin: 0;
  position: absolute;
  top: -20px;
}

.block_home_category__featured_row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding-bottom: 116px;
}

.block_home_category__featured_col {
  flex: 1;
  min-width: 0;
}
.block_home_category__featured:hover {
	background-size: 105%;
}


.block_home_category__featured {
  position: relative;
  width: 100%;
  min-height: 424px;
  background-color: var(--color-text);
  background-size: 100%;
  background-position: center;
	background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  position: relative;
  box-sizing: border-box;
	 transition: background-size 0.6s ease;
}

.block_home_category__featured_overlay {
  width: 100%;
  max-width: 463px;
  position: absolute;
  right: 44px;
  bottom: -77px;
  padding: 20px;
  background-color: var(--color-bg);
  box-sizing: border-box;
}

.block_home_category__category_strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  color: var(--color-bg);
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.block_home_category__category_strip:hover {
  opacity: 0.92;
}

.block_home_category__category_strip_icon {
  padding: 16px 12px;
  height: 20px;
  width: 100%;
  display: flex;
  justify-content: end;
  background-color: var(--color-primary);
}

.block_home_category__category_strip_name {
  display: block;
  background-color: var(--color-primary);
  text-align: start;
  width: 100%;
  padding: 0px 12px 8px;
}

.block_home_category__category_strip_all {
  display: block;
  width: 100%;
  padding: 8px 12px;
  text-align: start;
  background-color: var(--color-text);
}

.block_home_category__post_title {
  margin-bottom: 8px;
  color: var(--color-text);
  margin-top: 0;
}

.block_home_category__post_title a {
  color: var(--color-text);
  text-decoration: none;
}

.block_home_category__post_title a:hover {
  text-decoration: underline;
}

.block_home_category__post_excerpt {
  margin: 0 0 8px;
  color: var(--color-text);
}

.block_home_category__post_meta {
  margin: 0 0 20px;
  color: var(--color-text);
}

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

/* Desktop: hide featured card in list (it is shown as big featured block) */
.block_home_category__list .block_home_category__post--featured {
  display: none !important;
}

.block_home_category__post {
  display: flex !important;
  flex-direction: column;
  background: var(--color-bg);
  min-height: 400px;
  text-decoration: none !important;
}
.block_home_category__post_image_link {
  display: flex;
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
  position: relative;
}

.block_home_category__post_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  transition: transform 0.4s ease;
  transform-origin: top center; /* KEY */
}

.block_home_category__post:hover .block_home_category__post_category_label {
  margin-top: 12px;
}

.block_home_category__post:hover .block_home_category__post_image {
  transform: scaleY(1.05);
  margin-bottom: 16px;
}

.block_home_category__post_image_placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
}

.block_home_category__post_category_label {
  margin-bottom: 4px;
  padding: 0 8px;
  transition: margin-top 0.4s ease;
}

.block_home_category__post .block_home_category__post_title {
  padding: 0 8px;
}

.block_home_category__post .block_home_category__post_meta {
  margin-bottom: 16px;
  margin-top: auto;
  padding: 0 8px;
}

.block_home_category__post .block_home_category__post_link {
  text-align: center;
  background-color: var(--color-text);
  color: var(--color-bg);
  text-decoration: none !important;
  padding: 8px 12px;
}

.block_home_category__post:hover .block_home_category__post_link {
  background-color: var(--color-primary);
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.block_home_category__category_strip.mobile {
  display: none;
}



	.block_home_category__list-arrow--next:focus ,
	.block_home_category__list-arrow--prev:focus {
		background: var(--color-bg) !important;
	}

@media (max-width: 1328px) {
  .block_home_category__container {
    margin: 0 24px;
  }
}
@media (max-width: 1024px) {
  .block_home_category__container {
    padding: 64px 32px;
  }
	.block_home_category__category_strip.mobile{
		transform: unset;
	}
  .block_home_category__category_strip.mobile {
    display: flex;
    position: static;
    margin-top: 48px;
	  width: unset;
  }
  .block_home_category__category_strip {
    display: none;
  }
  .block_home_category__category_strip_name{
    text-align: center;
	padding: 22px 12px 12px;
  }
  .block_home_category__category_strip_all{
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Mobile: hide big featured block (featured is first slide in slider) */
  .block_home_category__featured_row {
    display: none !important;
  }
  .block_home_category__post {
    min-height: 340px;
  }
  /* Mobile: show featured card as first slide in list slider */
  .block_home_category__list .block_home_category__post--featured {
    display: flex !important;
  }
  .block_home_category__list {
    grid-template-columns: 1fr;
    position: relative;
  }
  /* Mobile: list becomes Slick slider (one slide, scroll one) */
  .block_home_category__list.slick-initialized {
    display: block;
  }
  .block_home_category__list.slick-initialized .slick-list {
    overflow: hidden;
    margin: 0 -12px;
  }
  .block_home_category__list.slick-initialized .slick-slide {
    height: auto;
  }
  .block_home_category__list.slick-initialized .block_home_category__post {
    margin: 0;
  }
  .block_home_category__list-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: var(--color-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
  }
  .block_home_category__list-arrow:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-left: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
  }
  .block_home_category__list-arrow--prev {
	  right: -32px !important;
  }
  .block_home_category__list-arrow--prev:before {
    transform: rotate(45deg);
    margin-left: 14px;
  }
  .block_home_category__list-arrow--next {
	left: -32px !important;
  }
  .block_home_category__list-arrow--next:before {
    transform: rotate(-135deg);
    margin-right: 14px;
  }
  [dir='rtl'] .block_home_category__list-arrow--prev:before {
    transform: rotate(-135deg);
	   content: '';
  }
  [dir='rtl'] .block_home_category__list-arrow--next:before {
    transform: rotate(45deg);
	  content: '';
  }
  .block_home_category__list .slick-dots {
    position: relative;
    bottom: 0;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .block_home_category__list .slick-dots li {
    margin: 0;
  }
  .block_home_category__list .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-secondary);
    font-size: 0;
    cursor: pointer;
  }
  .block_home_category__list .slick-dots li.slick-active button {
    background: var(--color-primary);
  }
  .block_home_category__section_title {
    top: -14px;
  }
  .block_home_category__featured_overlay {
    position: static;
  }
  .block_home_category__featured {
    justify-content: center;
    min-height: 500px;
  }
  .block_home_category {
    margin-bottom: 64px;
  }
}