

/* Start:/local/templates/capovita/components/bitrix/news.list/capovita_articles/style.css?177884593819079*/
.articles-block {
  --articles-font: "TT Chocolates", "Inter", Arial, sans-serif;
  --articles-text: #442413;
  --articles-muted: rgba(68, 36, 19, 0.8);
  --articles-bg: #fcfcfc;
  --articles-card: #ffffff;
  --articles-radius: clamp(34px, 3.75vw, 66px);
  --articles-gap: 20px;
  --articles-large-height: 821px;
  --articles-cell-height: 401px;
  width: 100%;
  overflow: hidden;
  background: var(--articles-bg);
  color: var(--articles-text);
  font-family: var(--articles-font);
}

.articles-block *,
.articles-block *::before,
.articles-block *::after {
  box-sizing: border-box;
}

.articles-block__inner {
  width: calc(100% - 152px);
  max-width: 1768px;
  margin: 0 auto;
  padding: 18px 0 232px;
}

.articles-block__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 19px;
  margin: 0 0 43px;
  color: rgba(68, 36, 19, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.articles-block__breadcrumb {
  color: inherit;
  text-decoration: none;
}

.articles-block__breadcrumb--current {
  color: var(--articles-text);
}

.articles-block__breadcrumb-separator {
  color: rgba(68, 36, 19, 0.45);
}

.articles-block__header {
  margin: 0 0 71px;
}

.articles-block__heading {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin: 0 0 24px;
}

.articles-block__title {
  margin: 0;
  color: var(--articles-text);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.articles-block__lead {
  color: var(--articles-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.articles-block__count {
  margin: 0;
  color: rgba(68, 36, 19, 0.8);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.articles-block__grid {
  display: grid;
  width: min(100%, 1343px);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--articles-gap);
}

.articles-block__card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--articles-radius);
  background: var(--articles-card);
  color: var(--articles-text);
  isolation: isolate;
}

.articles-block__card--hero,
.articles-block__card--size-large {
  height: var(--articles-large-height);
  grid-column: span 2;
}

.articles-block__card--wide,
.articles-block__card--size-wide {
  height: var(--articles-cell-height);
  grid-column: span 2;
}

.articles-block__card--small,
.articles-block__card--size-small {
  height: var(--articles-cell-height);
  grid-column: span 1;
}

.articles-block__card--theme-dark {
  background: #141414;
  color: #fcfcfc;
}

.articles-block__card--theme-light {
  background: #ffffff;
  color: var(--articles-text);
}

.articles-block__card--theme-brown {
  background: #442413;
  color: #fcfcfc;
}

.articles-block__card--theme-mint {
  background: #d4f4eb;
  color: var(--articles-text);
}

.articles-block__card--text-black {
  color: var(--articles-text);
}

.articles-block__card--text-white {
  color: #fcfcfc;
}

.articles-block__image-link {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.articles-block__card--hero .articles-block__image-link,
.articles-block__card--size-large .articles-block__image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.articles-block__card--small,
.articles-block__card--size-small {
  flex-direction: column;
}

.articles-block__card--wide .articles-block__image-link,
.articles-block__card--size-wide .articles-block__image-link {
  flex: 0 0 50%;
}

.articles-block__card--small .articles-block__image-link,
.articles-block__card--size-small .articles-block__image-link {
  position: relative;
  z-index: 0;
  flex: 0 0 50%;
}

.articles-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.articles-block__image--placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(118, 217, 190, 0.34), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #efe6dd 52%, #ffffff 100%);
}

.articles-block__card:hover .articles-block__image {
  transform: scale(1.035);
}

.articles-block__card--hero::after,
.articles-block__card--size-large::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(20, 14, 11, 0.66) 100%);
  pointer-events: none;
}

.articles-block__card--hero:not(.articles-block__card--hero-dark)::after,
.articles-block__card--size-large.articles-block__card--theme-light::after,
.articles-block__card--size-large.articles-block__card--theme-mint::after {
  background: linear-gradient(180deg, rgba(252, 252, 252, 0) 0%, rgba(252, 252, 252, 0.66) 100%);
}

.articles-block__card--hero-dark,
.articles-block__card--size-large.articles-block__card--theme-dark,
.articles-block__card--size-large.articles-block__card--theme-brown {
  color: #fcfcfc;
}

.articles-block__card--text-black.articles-block__card--hero,
.articles-block__card--text-black.articles-block__card--size-large,
.articles-block__card--text-black .articles-block__content {
  color: var(--articles-text);
}

.articles-block__card--text-white.articles-block__card--hero,
.articles-block__card--text-white.articles-block__card--size-large,
.articles-block__card--text-white .articles-block__content {
  color: #fcfcfc;
}

.articles-block__card--text-black .articles-block__card-title,
.articles-block__card--text-black .articles-block__card-link,
.articles-block__card--text-black .articles-block__read-row,
.articles-block__card--text-black .articles-block__meta {
  color: var(--articles-text);
}

.articles-block__card--text-white .articles-block__card-title,
.articles-block__card--text-white .articles-block__card-link,
.articles-block__card--text-white .articles-block__read-row,
.articles-block__card--text-white .articles-block__meta {
  color: #fcfcfc;
}

.articles-block__card--wide .articles-block__content,
.articles-block__card--size-wide .articles-block__content {
  flex: 0 0 50%;
  background: #ffffff;
}

.articles-block__card--small .articles-block__content,
.articles-block__card--size-small .articles-block__content {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  background: #ffffff;
}

.articles-block__card--theme-brown .articles-block__content,
.articles-block__card--theme-dark.articles-block__card--size-wide .articles-block__content,
.articles-block__card--theme-dark.articles-block__card--size-small .articles-block__content {
  background: #442413;
  color: #fcfcfc;
}

.articles-block__card--theme-mint .articles-block__content {
  background: #d4f4eb;
  color: var(--articles-text);
}

.articles-block__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
}

.articles-block__card--hero .articles-block__content,
.articles-block__card--size-large .articles-block__content {
  height: 100%;
  justify-content: flex-end;
  padding: 48px 40px 54px;
}

.articles-block__card--wide .articles-block__content,
.articles-block__card--size-wide .articles-block__content {
  justify-content: flex-end;
  padding: 32px 22px 32px;
}

.articles-block__card--small .articles-block__content,
.articles-block__card--size-small .articles-block__content {
  justify-content: flex-end;
  padding: 30px 20px 26px;
}

.articles-block__read-row {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  color: currentColor;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.articles-block__card--small .articles-block__read-row,
.articles-block__card--size-small .articles-block__read-row {
  font-size: 14px;
  margin-bottom: 12px;
}

.articles-block__read-time,
.articles-block__date,
.articles-block__stat,
.articles-block__share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.articles-block__stat {
  order: 1;
}

.articles-block__share {
  order: 2;
}

.articles-block__date {
  order: 3;
}

.articles-block__card-title {
  margin: 0;
  color: currentColor;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.articles-block__card--hero .articles-block__card-title,
.articles-block__card--size-large .articles-block__card-title {
  max-width: 579px;
  font-size: 40px;
}

.articles-block__card--wide .articles-block__card-title,
.articles-block__card--size-wide .articles-block__card-title {
  max-width: 267px;
  font-size: 21px;
  line-height: 1.18;
}

.articles-block__card--small .articles-block__card-title,
.articles-block__card--size-small .articles-block__card-title {
  max-width: 282px;
  font-size: 17px;
  line-height: 1.18;
}

.articles-block__card-link {
  color: inherit;
  text-decoration: none;
}

.articles-block__card-link:hover,
.articles-block__card-link:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.articles-block__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 26px 0 0;
  color: currentColor;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.articles-block__card--hero .articles-block__meta,
.articles-block__card--size-large .articles-block__meta {
  margin-top: 24px;
}

.articles-block__card--wide .articles-block__meta,
.articles-block__card--size-wide .articles-block__meta,
.articles-block__card--small .articles-block__meta,
.articles-block__card--size-small .articles-block__meta {
  margin-top: 20px;
}

.articles-block__card--small .articles-block__meta,
.articles-block__card--size-small .articles-block__meta {
  gap: 12px;
  font-size: 14px;
}

.articles-block__share {
  margin-left: 14px;
}

.articles-block__date {
  margin-left: auto;
  white-space: nowrap;
}

.articles-block__card--wide .articles-block__share,
.articles-block__card--size-wide .articles-block__share {
  margin-left: 0;
}

.articles-block__icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: currentColor;
}

.articles-block__icon--clock {
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.articles-block__icon--clock::before,
.articles-block__icon--clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.7px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: 50% 0;
}

.articles-block__icon--clock::before {
  height: 6px;
  transform: translate(-50%, -50%);
}

.articles-block__icon--clock::after {
  height: 5px;
  transform: translate(-50%, -50%) rotate(55deg);
}

.articles-block__icon--like::before,
.articles-block__icon--dislike::before {
  content: "";
  position: absolute;
  inset: 5px 6px 4px 8px;
  border: 1.7px solid currentColor;
  border-left-width: 5px;
  border-radius: 4px 5px 5px 4px;
  transform: rotate(-10deg);
}

.articles-block__icon--dislike {
  transform: rotate(180deg);
}

.articles-block__icon--eye::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 20px;
  height: 12px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.articles-block__icon--eye::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.articles-block__icon--share::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 14px;
  height: 9px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: rotate(-35deg);
}

.articles-block__icon--share::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: rotate(5deg);
}

.articles-block__actions {
  display: flex;
  justify-content: center;
  margin-top: 92px;
}

.articles-block__load {
  display: inline-flex;
  min-width: 100px;
  min-height: 91px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--articles-text);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.articles-block__load-icon {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border: 1px solid var(--articles-text);
  border-radius: 50%;
}

.articles-block__load-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 17px;
  width: 1.5px;
  height: 22px;
  background: currentColor;
  transform: translateX(-50%);
}

.articles-block__load-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 31px;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.articles-block__load-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.articles-block__load:hover .articles-block__load-icon,
.articles-block__load:focus-visible .articles-block__load-icon {
  background: rgba(68, 36, 19, 0.08);
}

.articles-block__load:focus-visible,
.articles-block__share:focus-visible,
.articles-block__card-link:focus-visible,
.articles-block__image-link:focus-visible {
  outline: 2px solid #76d9be;
  outline-offset: 4px;
}

.articles-block__load:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 1439px) {
  .articles-block__inner {
    width: calc(100% - 80px);
  }

  .articles-block__grid {
    max-width: 1120px;
  }

  .articles-block__card--hero,
  .articles-block__card--size-large {
    height: 685px;
  }

  .articles-block__card--wide,
  .articles-block__card--size-wide,
  .articles-block__card--small,
  .articles-block__card--size-small {
    height: 350px;
  }

  .articles-block__card--hero .articles-block__card-title,
  .articles-block__card--size-large .articles-block__card-title {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .articles-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles-block__card--hero,
  .articles-block__card--size-large,
  .articles-block__card--wide,
  .articles-block__card--size-wide,
  .articles-block__card--small,
  .articles-block__card--size-small {
    grid-column: span 1;
    height: auto;
    min-height: 520px;
  }

  .articles-block__card--wide,
  .articles-block__card--size-wide {
    flex-direction: column;
  }

  .articles-block__card--wide .articles-block__image-link,
  .articles-block__card--size-wide .articles-block__image-link {
    position: absolute;
    inset: 0;
    flex: none;
  }

  .articles-block__card--wide .articles-block__content,
  .articles-block__card--size-wide .articles-block__content,
  .articles-block__card--small .articles-block__content,
  .articles-block__card--size-small .articles-block__content {
    position: relative;
    min-height: 220px;
    margin-top: auto;
  }

  .articles-block__card--hero .articles-block__meta,
  .articles-block__card--size-large .articles-block__meta {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .articles-block__inner {
    width: min(100%, 390px);
    padding: 0 0 72px;
  }

  .articles-block__breadcrumbs {
    display: none;
  }

  .articles-block__header {
    margin: 0 0 30px;
  }

  .articles-block__heading {
    align-items: center;
    gap: 13px;
    margin: 0 0 30px;
  }

  .articles-block__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .articles-block__lead {
    font-size: 12px;
    line-height: 1.2;
    text-align: right;
  }

  .articles-block__count {
    font-size: 18px;
    line-height: 1.2;
  }

  .articles-block__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .articles-block__card,
  .articles-block__card--hero,
  .articles-block__card--size-large,
  .articles-block__card--wide,
  .articles-block__card--size-wide,
  .articles-block__card--small,
  .articles-block__card--size-small {
    flex-direction: row;
    height: auto;
    min-height: 0;
    aspect-ratio: 390 / 238.554;
    border-radius: 39.062px;
    background: #e3e3e3;
  }

  .articles-block__card--hero::after,
  .articles-block__card--size-large::after {
    display: none;
  }

  .articles-block__card--hero .articles-block__image-link,
  .articles-block__card--size-large .articles-block__image-link,
  .articles-block__card--wide .articles-block__image-link,
  .articles-block__card--size-wide .articles-block__image-link,
  .articles-block__card--small .articles-block__image-link,
  .articles-block__card--size-small .articles-block__image-link {
    position: relative;
    inset: auto;
    z-index: 0;
    flex: 0 0 50%;
    height: 100%;
  }

  .articles-block__card--hero .articles-block__content,
  .articles-block__card--size-large .articles-block__content,
  .articles-block__card--wide .articles-block__content,
  .articles-block__card--size-wide .articles-block__content,
  .articles-block__card--small .articles-block__content,
  .articles-block__card--size-small .articles-block__content {
    position: relative;
    flex: 0 0 50%;
    height: 100%;
    min-height: 0;
    margin: 0;
    justify-content: flex-start;
    padding: 48px 12px 32px;
    background: #ffffff;
    color: var(--articles-text);
  }

  .articles-block__card--text-black .articles-block__card-title,
  .articles-block__card--text-black .articles-block__card-link,
  .articles-block__card--text-black .articles-block__read-row,
  .articles-block__card--text-black .articles-block__meta,
  .articles-block__card--text-white .articles-block__card-title,
  .articles-block__card--text-white .articles-block__card-link,
  .articles-block__card--text-white .articles-block__read-row,
  .articles-block__card--text-white .articles-block__meta {
    color: var(--articles-text);
  }

  .articles-block__card--hero .articles-block__card-title,
  .articles-block__card--size-large .articles-block__card-title,
  .articles-block__card--wide .articles-block__card-title,
  .articles-block__card--size-wide .articles-block__card-title,
  .articles-block__card--small .articles-block__card-title,
  .articles-block__card--size-small .articles-block__card-title {
    max-width: 164px;
    font-size: 16px;
    line-height: 1.2;
  }

  .articles-block__read-row {
    margin: 0 0 11.837px;
    font-size: 12px;
    line-height: 1.2;
  }

  .articles-block__meta {
    margin: auto 0 0;
    gap: 9px;
    flex-wrap: nowrap;
    font-size: 12px;
    line-height: 1.2;
  }

  .articles-block__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .articles-block__read-time,
  .articles-block__date,
  .articles-block__stat,
  .articles-block__share {
    gap: 6px;
  }

  .articles-block__date {
    position: absolute;
    left: 12px;
    top: 18px;
    margin: 0;
    color: rgba(68, 36, 19, 0.8);
    font-size: 10.653px;
    line-height: 1.2;
  }

  .articles-block__share {
    position: absolute;
    right: 12px;
    top: 18px;
    margin: 0;
  }

  .articles-block__stat {
    gap: 6px;
  }

  .articles-block__stat:nth-of-type(3) {
    margin-left: 0;
  }

  .articles-block__actions {
    margin-top: 42px;
  }
}

/* End */
/* /local/templates/capovita/components/bitrix/news.list/capovita_articles/style.css?177884593819079 */
