

/* Start:/local/templates/g3/css/list.css?16915803572555*/
.list {
  min-height: 200px;
  padding: 24px 0;
}

.list__detail {
  display: grid;
  gap: 20px;
}

.list__title {
  font-weight: 600;
  font-size: calc(20rem/var(--initial-font-multiplier));
}

.list__top-buttons {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
  justify-content: flex-end;
  margin: 0 0 20px 0;
}

.list__item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.list__item--main {
  padding: 0;
  grid-template-columns: minmax(min-content, max-content) 1fr;
  gap: 0;
  background: var(--light-gray-color);
  border-radius: var(--main-border);
  border-bottom: 0;
}

:where(.list__item--main) .list__photo {
  display: flex;
  height: 100%;
}

.list__item--main .list__photo-image {
  border-radius: 18px 0 0 18px !important;
  object-fit: cover;
}

.list__item--main .list__detail {
  display: grid;
  align-content: space-between;
  gap: 18px;
  height: 100%;
  padding: 28px;
}

.list__item--main .list__title {
  font-weight: bold;
  font-size: calc(30rem/var(--initial-font-multiplier));
}

.list__item--main .list__content {
  display: grid;
  gap: 12px;
  color: var(--text-color-light-gray);
  font-weight: 600;
}

.list__item--main .list__link {
  font-size: calc(16rem/var(--initial-font-multiplier));
}

.list__item--main .list__title-wrapper {
  display: grid;
  gap: 18px;
}

.list__item--main .list__link-icon {
  color: var(--primary-color);
  vertical-align: middle;
  margin-left: 6px;
}

.list__item--main .list__head {
  gap: 18px;
}

.list__item--no-photo {
  grid-template-columns: 100%;
}

.list__photo:hover {
  border: none;
}

.list__photo-image {
  border-radius: 12px;
  width: 100%;
}

.list__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

:root.root--special .list__item {
  border-color: var(--special-text-color);
}

@media (hover: hover) {
  .list__title > a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-25);
  }
}

@media screen and (max-width: 735px) {
  .list__item {
    grid-template-columns: 100%;
  }

  .list__item--main .list__title {
    font-weight: bold;
    font-size: calc(20rem/var(--initial-font-multiplier));
  }

  .list__item--main .list__photo-image {
    border-radius: 18px 18px 0 0 !important;
  }

  .list__item--main .list__content {
    font-size: calc(16rem/var(--initial-font-multiplier));
  }

  .list__photo-image {
    width: 100%;
  }
}

/* End */


/* Start:/local/templates/g3/css/table.css?16915803571967*/
.table {
  --cell-spacing: 20px;
  --border: 2px solid var(--border-color);

  border-collapse: collapse;
  font-size: calc(16rem / var(--initial-font-multiplier));
  font-weight: 600;
  width: 100%;
}

.table__row {
  border-bottom: var(--border);
}

.table__row:empty {
  border-bottom: none;
}

.table__cell {
  padding: var(--cell-spacing);
  position: relative;
  vertical-align: top;
  text-align: left;
}

.table__cell + .table__cell::before {
  content: '';
  position: absolute;
  top: var(--cell-spacing);
  bottom: var(--cell-spacing);
  left: 0;
  border-left: var(--border);
}

/* Table head overwrite */
.table__head {
  --cell-bg-1: var(--light-gray-color);
  /** Little darker than --light-gray-color*/
  --cell-bg-2: hsl(240deg, 28%, 95%);
  --border: none;

  font-size: calc(18rem / var(--initial-font-multiplier));
  font-weight: bold;
}

.table__head .table__cell {
  vertical-align: middle;
  text-align: left;
  padding: var(--cell-spacing);
  font-size: calc(20rem / var(--initial-font-multiplier));
}

.table__head .table__cell:nth-child(2n+1) {
  background: var(--cell-bg-1);
}

.table__head .table__cell:nth-child(2n) {
  background: var(--cell-bg-2);
}

.table__head .table__cell:first-child {
  border-radius: var(--main-border) 0 0 0;
}

.table__head .table__cell:last-child {
  border-radius: 0 var(--main-border) 0 0;
}

:root.root--special .table {
  --border: 2px solid var(--special-text-color);
  border: var(--border);
}

:root.root--special .table__cell {
  background: var(--special-background-color);
}

@media screen and (max-width: 896px) {
  .table__head {
    display: none;
  }

  .table__row {
    display: flex;
    flex-direction: column;
  }

  .table__row:first-of-type:not(:empty) {
    border-top: var(--border);
  }


  .table__cell + .table__cell::before {
    left: var(--cell-spacing);
    right: var(--cell-spacing);
    top: 0;
    bottom: unset;
    border-left: unset;
    border-top: var(--border);
  }
}

/* End */


/* Start:/local/templates/g3/components/openregion/title.bar/.default/style.css?1690884214493*/
.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 calc(var(--grid-gap) / -2);
  font-size: calc(16rem/var(--initial-font-multiplier));
  align-items: baseline;
}

.title-wrapper__title {
  margin: 0 calc(var(--grid-gap) / 2);
  font-weight: bold;
}

.title-wrapper__leading, .title-wrapper__trailing {
  display: flex;
  flex-wrap: wrap;
}

.title-wrapper__leading > *, .title-wrapper__trailing > * {
  margin: 5px calc(var(--grid-gap) / 2);
}

/* End */


/* Start:/local/templates/g3/components/openregion/news.list/workers/style.css?16957205311186*/
.worker {
  --content-spacing: 10px;
}

.meta.meta--worker {
  row-gap: 0;
}

@media screen and (max-width: 735px) {
  .worker__content-wrapper {
    padding: 0;
  }
}

.worker__people {
  --image-offset: 10px;
  padding: var(--content-spacing) 0;
  display: flex;
  flex-wrap: nowrap;
}

.worker__people-photo {
  margin-top: calc(0px - var(--image-offset));
  height: 113px;
  width: auto;
  border-radius: 8px;
}

.worker__people-name {
  margin-left: 20px;
  font-weight: bold;
}

@media (hover: hover) {
  .worker__people:hover .worker__people-name {
    color: var(--primary-color-hover);
  }

  :root.root--special .worker__people:hover .worker__people-name {
    color: var(--special-text-color);
  }
}

.worker .admin-area {
  margin-top: var(--content-spacing);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

.worker .admin-area__badges {
  margin-left: 10px;
}

.worker .admin-area__buttons {
  margin-left: 0;
}

.worker__department > a:not(:last-of-type)::after {
  content: ' / '
}

.worker__contacts {
  line-height: 1.7;
}

.worker__schedule {
  margin-top: 12px;
}

.meta__item--nowrap {
  white-space: nowrap;
}

/* End */
/* /local/templates/g3/css/list.css?16915803572555 */
/* /local/templates/g3/css/table.css?16915803571967 */
/* /local/templates/g3/components/openregion/title.bar/.default/style.css?1690884214493 */
/* /local/templates/g3/components/openregion/news.list/workers/style.css?16957205311186 */
