

/* Start:/local/templates/verba/components/bitrix/news.list/verba_news/style.css?17623418533038*/
.news-item {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
  margin: 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-image {
  position: relative;
  flex-shrink: 0;
  width: 40%;
  margin: 0;
  align-self: flex-start;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease-in-out;
  pointer-events: none;
}
.news-image:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}

.news-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 730 / 400;
  object-fit: cover;
}

.news-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.news-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
  max-width: 46em;
}

p {
  max-width: 46em !important;
}

.news-content .news-summary {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.news-content .news-date {
  font-size: 18px;
  color: #757575;
  margin-bottom: 16px;
  display: block;
}

.news-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: #282828;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 12px;
}

.news-full-text {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-full-text-content {
  overflow: hidden;
}
.news-expandable.expanded .news-full-text {
  grid-template-rows: 1fr;
  margin-top: 20px;
  font-size: 18px;
}

.news-full-text-content p,
.news-full-text-content ul {
  margin: 0 0 15px 0;
  padding-top: 5px;
  font-size: 18px;
  line-height: 1.45;
}
.news-full-text-content ul {
  padding-left: 20px;
}
.news-full-text-content > *:last-child {
  margin-bottom: 0;
}

.btn-book {
  position: relative;
  z-index: 1;
  background-color: transparent;
  isolation: isolate;

  color: #ffffff;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 500;

  font-size: 14px;
  text-transform: uppercase;

  text-align: center;
  display: inline-block;
  max-width: 100%;
  margin-top: 24px;

  align-self: flex-start;
}

.btn-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #191e29;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-book:hover::before {
  transform: scale(1.05);
}

@media (max-width: 804px) {
  .news-item {
    flex-direction: column;
  }
  .news-image {
    width: 100%;
    max-width: 100%;
  }
}

/* End */
/* /local/templates/verba/components/bitrix/news.list/verba_news/style.css?17623418533038 */
