/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-sxl: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

/* stylelint-disable */
.custom-image {
  overflow: hidden;
  position: relative;
}
.custom-image__block {
  max-width: 620px;
  margin: 0 auto;
  padding: 25px 15px;
  background: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .custom-image__block {
    max-width: 790px;
    padding: 50px 100px;
  }
}
.custom-image__image {
  display: flex;
  flex-direction: column;
}
.custom-image__image img {
  position: relative;
  overflow: hidden;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .custom-image__image img {
    width: 100%;
    height: auto;
  }
}
.custom-image__caption {
  color: var(--sk-color-brown);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.3;
}
.custom-image__caption::before, .custom-image__caption::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.custom-image__caption::before {
  margin-bottom: calc(-0.1666666667em + 0px);
}
.custom-image__caption::after {
  margin-top: calc(-0.1666666667em + 0px);
}
