/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-references-list__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.s-references-list__toolbar-left, .s-references-list__toolbar-right {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.s-references-list__view-toggles {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.s-references-list__btn, .s-references-list__icon-btn {
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  background: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
  border-radius: 1.875rem;
  min-height: 2.625rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
}
.s-references-list__btn, .s-references-list__icon-btn {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-references-list__btn, .s-references-list__icon-btn {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-references-list__btn, .s-references-list__icon-btn {
    font-size: 0.875rem;
  }
}
.s-references-list__icon-btn {
  width: 2.625rem;
  height: 2.625rem;
  padding: 0;
}
.s-references-list__btn--dropdown {
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
.s-references-list__btn--dropdown::after {
  content: "";
  width: 0.5rem;
  height: 0.375rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  flex-shrink: 0;
}
.s-references-list__btn--active, .s-references-list__icon-btn--active {
  border: 2px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  border-color: var(--wp--preset--color--bg-primary);
}
.s-references-list__dropdown {
  position: relative;
}
.s-references-list__dropdown.is-open .s-references-list__dropdown-panel {
  display: flex;
}
.s-references-list__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 15;
  min-width: 14.375rem;
  padding: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  border-radius: 0.75rem;
  background: var(--wp--preset--color--bg-white);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.s-references-list__dropdown-item {
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  color: var(--wp--preset--color--txt-black);
  cursor: pointer;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  font-weight: 400;
}
.s-references-list__dropdown-item {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-references-list__dropdown-item {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-references-list__dropdown-item {
    font-size: 0.875rem;
  }
}
.s-references-list__dropdown-item:hover {
  background: var(--wp--preset--color--bg-secondary-lighter);
}
.s-references-list__btn[disabled], .s-references-list__icon-btn[disabled] {
  opacity: 1;
  cursor: default;
}
.s-references-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  row-gap: 2.5rem;
}
.s-references-list__table-wrap {
  margin-top: 0.5rem;
}
.s-references-list__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--wp--preset--color--txt-black);
}
.s-references-list__table.dataTable thead > tr > th .dt-column-header {
  display: flex;
  justify-content: flex-start;
}
.s-references-list__table.dataTable thead > tr > th .dt-column-header .dt-column-title {
  flex-grow: 0;
}
.s-references-list__table.dataTable thead > tr > th:first-child .dt-column-header .dt-column-order {
  opacity: 0;
}
.s-references-list__table.dataTable thead > tr > th.dt-type-numeric div.dt-column-header {
  flex-direction: row;
}
.s-references-list__table.dataTable thead > tr > th.dt-orderable-asc .dt-column-order:before, .s-references-list__table.dataTable thead > tr > th.dt-orderable-desc .dt-column-order:after {
  opacity: 0.5;
}
.s-references-list__table.dataTable thead > tr > th.dt-ordering-asc .dt-column-order:before, .s-references-list__table.dataTable thead > tr > th.dt-ordering-desc .dt-column-order:after {
  opacity: 0.8;
}
.s-references-list__table.dataTable thead > tr > th.dt-ordering-asc .dt-column-order:after, .s-references-list__table.dataTable thead > tr > th.dt-ordering-desc .dt-column-order:before {
  opacity: 0;
}
.s-references-list__table thead th {
  padding: 0.75rem 0 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.0125rem;
  background: none;
  color: var(--wp--preset--color--txt-black);
  opacity: 0.5;
}
.s-references-list__table tbody td {
  padding: 1.75rem 0 !important;
  border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  text-align: left !important;
}
.s-references-list__table thead th:nth-child(1),
.s-references-list__table tbody td:nth-child(1) {
  width: 30%;
}
.s-references-list__table thead th:nth-child(2),
.s-references-list__table tbody td:nth-child(2) {
  width: 20%;
  white-space: nowrap;
}
.s-references-list__table thead th:nth-child(3),
.s-references-list__table tbody td:nth-child(3) {
  width: 20%;
}
.s-references-list__table thead th:nth-child(4),
.s-references-list__table tbody td:nth-child(4) {
  width: 10%;
}
.s-references-list__table thead th:nth-child(5),
.s-references-list__table tbody td:nth-child(5) {
  width: 20%;
}
.s-references-list__table a {
  text-decoration: none;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
}
.s-references-list__table a {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-references-list__table a {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-references-list__table a {
    font-size: 1.125rem;
  }
}
.s-references-list .cell-title {
  text-align: left;
}
.s-references-list__cell {
  background: none;
}
.s-references-list__market-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  display: inline-block;
}
.s-references-list__meta-inline {
  display: block;
}
.s-references-list__cell-value--year-inmeta {
  display: none;
}
.s-references-list__card {
  position: relative;
  background: var(--wp--preset--color--bg-white);
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.s-references-list__card:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.08);
}
.s-references-list__media {
  margin: 0;
  aspect-ratio: 16/10;
  position: relative;
}
.s-references-list__media img {
  border-radius: 0.75rem 0.75rem 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-references-list__featured-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 3;
  background: color-mix(in srgb, var(--wp--preset--color--bg-white) 60%, transparent);
  color: var(--wp--preset--color--txt-black);
  border-radius: 1.25rem;
  padding: 0.375rem 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
}
.s-references-list__featured-badge {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-references-list__featured-badge {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-references-list__featured-badge {
    font-size: 0.75rem;
  }
}
.s-references-list__meta {
  margin: 1rem 1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--wp--preset--color--txt-black);
  row-gap: 0.1875rem;
}
.s-references-list__market {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  flex-shrink: 0;
}
.s-references-list__city {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  flex-shrink: 0;
}
.s-references-list__card-title {
  margin: 0.75rem 1rem 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025rem;
  color: var(--wp--preset--color--txt-black);
}
.s-references-list__card-title {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .s-references-list__card-title {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-references-list__card-title {
    font-size: 1.25rem;
  }
}
.s-references-list__card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.s-references-list__pagination {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s-references-list__page-btn {
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  background: var(--wp--preset--color--bg-white);
  border-radius: 0.5rem;
  min-width: 2.125rem;
  min-height: 2.125rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.s-references-list__page-btn.is-active {
  border-color: var(--wp--preset--color--bg-primary);
}
.s-references-list__empty {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-light);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .s-references-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 991px) {
  .s-references-list {
    overflow: visible;
  }
  .s-references-list__grid {
    grid-template-columns: 1fr;
  }
  .s-references-list__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.5rem;
    row-gap: 0.625rem;
    align-items: center;
    overflow: visible;
  }
  .s-references-list__toolbar-left, .s-references-list__toolbar-right {
    display: contents;
    overflow: visible;
  }
  .s-references-list__toolbar-left > :first-child {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    max-width: 100%;
  }
  .s-references-list__toolbar-left > :last-child {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
  }
  .s-references-list__toolbar-left > :last-child .s-references-list__dropdown-panel {
    left: auto;
    right: 0;
    min-width: 13.75rem;
    max-width: calc(100vw - 2.5rem);
    width: max-content;
  }
  .s-references-list__sort {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: 100%;
    min-width: 0;
  }
  .s-references-list__sort[hidden] {
    display: none !important;
  }
  .s-references-list__sort [data-sort-trigger] {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding-inline: 0.875rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .s-references-list__sort .s-references-list__dropdown-panel {
    left: 0;
    right: auto;
    max-width: calc(100vw - 2.5rem);
  }
  .s-references-list__view-toggles {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
  .s-references-list__dropdown {
    position: relative;
  }
  .s-references-list__dropdown-panel {
    z-index: 30;
  }
  .s-references-list__dropdown-item {
    white-space: normal;
    word-break: break-word;
  }
  .s-references-list__btn, .s-references-list__btn--dropdown {
    flex: 0 1 auto;
    min-height: 2.625rem;
  }
  .s-references-list__table-wrap,
  .s-references-list .dt-container,
  .s-references-list .dt-layout-table {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .s-references-list__table {
    display: block;
    width: 100% !important;
    min-width: 100%;
    table-layout: fixed;
  }
  .s-references-list__table colgroup {
    display: none;
  }
  .s-references-list__table thead,
  .s-references-list__table tbody {
    display: block;
  }
  .s-references-list__table.dataTable th,
  .s-references-list__table.dataTable td {
    width: auto !important;
    max-width: none !important;
  }
  .s-references-list__table.dataTable > thead > tr > th,
  .s-references-list__table.dataTable > thead > tr > td {
    border-bottom: none !important;
  }
  .s-references-list__table.dataTable > tbody > tr > * {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .s-references-list__table.dataTable thead > tr > th:nth-child(3) .dt-column-header,
  .s-references-list__table.dataTable thead > tr > th:nth-child(4) .dt-column-header {
    justify-content: flex-end;
    width: 100%;
  }
  .s-references-list__table.dataTable thead > tr > th:nth-child(3) .dt-column-title {
    text-align: right;
  }
  .s-references-list__table thead tr,
  .s-references-list__table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) max-content;
    column-gap: 0.5rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
  }
  .s-references-list__table thead tr {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  }
  .s-references-list__table thead th {
    display: block;
    padding: 0.5rem 0 0.75rem !important;
    border: 0;
    white-space: nowrap;
  }
  .s-references-list__table thead th:nth-child(2), .s-references-list__table thead th:nth-child(5), .s-references-list__table thead th:nth-child(6) {
    display: none !important;
  }
  .s-references-list__table thead th:nth-child(1) {
    grid-column: 1;
    text-align: left;
  }
  .s-references-list__table thead th:nth-child(3) {
    grid-column: 2;
    text-align: right;
    justify-self: end;
  }
  .s-references-list__table thead th:nth-child(4) {
    grid-column: 3;
    text-align: right;
    justify-self: end;
  }
  .s-references-list__table tbody tr {
    padding: 1.25rem 0;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  }
  .s-references-list__table tbody td {
    display: block;
    box-sizing: border-box;
    padding: 0 !important;
    border: 0 !important;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left !important;
  }
  .s-references-list__table tbody td:nth-child(4), .s-references-list__table tbody td:nth-child(5), .s-references-list__table tbody td:nth-child(6) {
    display: none !important;
  }
  .s-references-list__table tbody td:empty {
    display: none;
  }
  .s-references-list__table .cell-title {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0.75rem !important;
    min-width: 0;
  }
  .s-references-list__table .cell-title a {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 500;
    color: var(--wp--preset--color--txt-black);
  }
  .s-references-list__table tbody td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0.625rem !important;
    min-width: 0;
  }
  .s-references-list__table tbody td:nth-child(3) {
    grid-column: 2/4;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    text-align: right !important;
    min-width: 0;
    max-width: 100%;
  }
  .s-references-list__meta-inline {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    min-width: 0;
  }
  > .s-references-list__meta-inline__cell-value:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .s-references-list__cell-value {
    display: inline-block;
    max-width: 100%;
    color: var(--wp--preset--color--txt-gray-light);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.0125rem;
    text-align: right;
    white-space: nowrap;
  }
  .s-references-list__cell-value--year-inmeta {
    display: inline;
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
    text-transform: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
  }
  .s-references-list__market-label {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .s-references-list__btn {
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
  }
  .s-references-list__btn--dropdown {
    min-width: 0;
    padding-inline: 0.75rem 0.625rem;
    gap: 0.375rem;
  }
  .s-references-list__toolbar {
    column-gap: 0.375rem;
  }
  .s-references-list__table thead tr,
  .s-references-list__table tbody tr {
    column-gap: 0.375rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) max-content;
  }
  .s-references-list__table tbody tr {
    padding: 1.125rem 0;
  }
  .s-references-list__table .cell-title a {
    font-size: 0.9375rem;
  }
  .s-references-list__meta-inline {
    gap: 0.875rem;
  }
  .s-references-list__cell-value {
    font-size: 0.6875rem;
  }
  .s-references-list__cell-value--year-inmeta {
    font-size: 0.8125rem;
  }
}
.s-references-list table.dataTable > thead > tr > th,
.s-references-list table.dataTable > thead > tr > td {
  padding: 10px 0;
}
@media screen and (max-width: 991px) {
  .s-references-list table.dataTable > thead > tr > th,
  .s-references-list table.dataTable > thead > tr > td {
    border-bottom: none !important;
  }
}
.s-references-list table.dataTable thead > tr > th.dt-orderable-asc:hover,
.s-references-list table.dataTable thead > tr > th.dt-orderable-desc:hover,
.s-references-list table.dataTable thead > tr > td.dt-orderable-asc:hover,
.s-references-list table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: none;
}