@charset "UTF-8";
.services__item {
  --item-title-font-size: var(--font-size-30);
  --item-title-color: var(--color-white);
  --item-text-color: var(--color-secondary-light);
  --item-text-font-size: var(--font-size-14);
  --item-shadow: none;
  --item-link-color: var(--color-white);
  --item-link-shadow: none;
  --item-button-wrapper-background: var(--color-primary);
  --item-padding: clamp(10px, 5cqw, 30px);
  --item-background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: var(--font-size-20);
  border: none;
  padding: 0;
  box-shadow: var(--item-shadow);
  background-color: var(--item-background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.services__item--clickable {
  --item-shadow: var(--shadow-box);
  --item-title-font-size: var(--font-size-30);
}
.services__item--clickable:hover {
  --item-link-color: var(--color-white);
  --item-link-shadow: none;
  --item-title-color: var(--color-white);
  --item-text-color: var(--color-white);
  --item-shadow: var(--shadow-box-hover);
  --item-button-wrapper-background: var(--color-primary-light);
  --item-background-color: var(--color-tertiary);
  --item-arrow-gap: 0.75em;
}
.services__item--highlighted {
  --item-title-font-size: var(--font-size-36);
  --item-text-font-size: var(--font-size-20);
  background-color: var(--color-white);
  padding: clamp(1em, 5cqw, var(--gap));
  box-shadow: var(--item-shadow);
}
.services__item--highlighted:hover {
  --item-shadow: var(--shadow-box-hover);
}
.services__item--numbered {
  text-align: left;
}
.services__item-icon-wrapper + .services__item-content {
  padding-top: 0;
}
.services__item-image-wrapper + .services__item-content {
  padding-top: calc(var(--item-padding) / 2);
}
.services__item-content {
  padding: var(--item-padding);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex-grow: 1;
  justify-content: space-between;
}
.services__item-icon-wrapper {
  display: flex;
  align-items: center;
  padding: var(--item-padding);
  padding-bottom: 0;
  margin-bottom: 1em;
  position: relative;
  height: 100%;
  max-height: 180px;
}
.services__item-icon {
  max-height: 100%;
  margin: 0 auto;
  width: auto;
  height: auto;
}
.services__item-icon[src*=svg] {
  height: 100%;
  width: auto;
}
.services__item-image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.services__item-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.services__item-heading {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-regular);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--item-title-font-size);
  color: var(--item-title-color);
  margin: 0;
  transition: var(--transition);
  line-height: 1;
}
.services__item-text, .services__item-text p {
  font-family: var(--font-basic);
  font-weight: var(--font-weight-light);
  font-optical-sizing: auto;
  font-size: var(--item-text-font-size);
  color: var(--item-text-color);
  line-height: var(--line-height);
  margin: 0;
  margin-top: 1em;
  transition: var(--transition);
  background-color: transparent !important;
}
.services__item-button {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  color: var(--item-link-color);
  font-size: var(--font-size-16);
  transition: var(--transition);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: var(--item-arrow-gap, 0.5em);
}
.services__item-button::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  mask: var(--icon-arrow-right) center/contain no-repeat;
  background-color: var(--item-link-color);
  transition: var(--transition);
}
.services__item-number {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  color: var(--color-primary-light);
  font-size: var(--font-size-72);
  padding: var(--item-padding);
  padding-bottom: 0;
  margin-bottom: -0.25em;
}
.services__item-number span {
  display: inline-block;
  line-height: 1;
}
.services__item .is-style-checkboxes {
  --font-size: var(--font-size-16);
  --font-color: var(--color-secondary-light);
  --icon-list-item-color: var(--color-secondary-light);
}
.services__item .is-style-checkboxes li:before {
  top: 0.1em;
}
@media screen and (max-width: 600px) {
  .services__item-icon-wrapper {
    max-height: 120px;
  }
}

.is-style-delivery .services__item {
  --item-background-color: var(--color-secondary-light);
  --item-title-color: var(--color-secondary);
  --item-text-font-size: var(--font-size-18);
  --item-text-color: var(--color-secondary);
  --item-link-color: var(--color-secondary);
}
.is-style-delivery .services__item-icon-wrapper {
  max-height: 100px;
}
.is-style-delivery .services__item-icon {
  margin: 0;
}
.is-style-delivery .services__item-button {
  padding: 0.75em 1em;
  width: 100%;
  background-color: var(--color-white);
  justify-content: center;
  font-family: var(--font-basic);
  font-weight: var(--font-weight-light);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--font-size-18);
}
.is-style-delivery .services__item-button::after {
  display: none;
}
.is-style-delivery .services__item-button:hover {
  --item-link-color: var(--color-white);
  background-color: var(--color-primary);
}
.is-style-delivery .is-style-checkboxes {
  --font-size: var(--font-size-18);
  --font-color: var(--color-secondary);
  --icon-list-item-color: var(--color-secondary);
}

.is-style-gifts .services__item {
  --item-title-font-size: var(--font-size-42);
  --item-background-color: var(--color-tertiary);
  --item-title-color: var(--color-white);
  --item-text-font-size: var(--font-size-20);
  --item-text-color: var(--color-white);
}
.is-style-gifts .services__item-icon-wrapper {
  max-height: 100px;
}
.is-style-gifts .services__item-icon {
  margin: 0;
}
.is-style-gifts .is-style-checkboxes {
  --font-size: var(--font-size-18);
  --font-color: var(--color-white);
  --icon-list-item-color: var(--color-white);
}

/* Hlavní služby */
.is-style-main-services {
  display: grid;
  grid-template-columns: repeat(12, 1fr) !important;
  --item-span: span 5;
}
.is-style-main-services .services__item {
  --item-background-color: transparent;
  --item-text-color: var(--color-white);
  --button-wrapper-opacity: 0;
  --button-wrapper-position: -2em;
  min-height: 380px;
  grid-column: var(--item-span);
  justify-content: flex-end;
  position: relative;
}
.is-style-main-services .services__item:hover {
  --button-wrapper-opacity: 1;
  --button-wrapper-position: 0;
}
.is-style-main-services .services__item:hover::after {
  opacity: 1;
}
.is-style-main-services .services__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(var(--color-heading-rgb), 0.2), rgba(var(--color-heading-rgb), 1));
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0.5;
  transition: var(--transition);
}
.is-style-main-services .services__item:nth-child(1), .is-style-main-services .services__item:nth-child(4) {
  --item-span: span 7;
}
.is-style-main-services .services__item-image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}
.is-style-main-services .services__item-content {
  flex-grow: 0;
  z-index: 2;
  position: relative;
}
.is-style-main-services .services__item-button-wrapper {
  margin-bottom: var(--button-wrapper-position);
  opacity: var(--button-wrapper-opacity);
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .is-style-main-services .services__item {
    --item-span: span 6 !important;
  }
}
@media screen and (max-width: 600px) {
  .is-style-main-services .services__item {
    --item-span: span 12 !important;
    min-height: 260px;
  }
}