.communique-press {
  padding: 0 16px;
}

/* .communique-press .spacing-top {
  height: 32px;
}

@media screen and (min-width: 768px) {
  .communique-press .spacing-top {
    height: 0px;
  }
}

.communique-press .spacing-bottom {
  height: 60px;
}

@media screen and (min-width: 768px) {
  .communique-press .spacing-bottom {
    height: 0px;
  }
} */

.communique-press h2 {
  text-align: center;
  margin-bottom: 64px;
}

.communique-press .communique-press--filter {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .communique-press .communique-press--filter {
    margin-bottom: 64px;
  }
}

.communique-press .communique-press--filter .title {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--black);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.communique-press .communique-press--filter .filter-select {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .communique-press
    .communique-press--filter
    .filter-select--container-select-item {
    grid-template-columns: minmax(auto, 362px) minmax(auto, 362px) auto;
  }
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item
  label {
  font-family: "inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item
  select {
  padding: 20px 32px;
  border-radius: 9px;
  background-color: var(--white);
  color: var(--grey);
  font-style: italic;
  cursor: pointer;
  appearance: none;
  border: 2px solid var(--black);
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 32px;
  width: 28px;
  height: 14px;
  mask: url(../images/icon-indicator.svg) no-repeat;
  -webkit-mask: url(../images/icon-indicator.svg) no-repeat;
  mask-size: contain;
  -webkit-mask: contain;
  background-color: var(--black);
  pointer-events: none;
  transition: background-color 0.3s ease;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item:hover::after {
  background-color: var(--green-dark);
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item:last-child {
  width: max-content;
}

@media screen and (min-width: 768px) {
  .communique-press
    .communique-press--filter
    .filter-select--container-select-item
    .select-item:last-child {
    justify-self: flex-end;
    align-self: self-end;
  }
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item:last-child
  button {
  appearance: none;
  border: 1px solid var(--black);
  border-radius: 40px;
  padding: 18px 32px;
  text-align: center;
  font-family: "inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background-color: transparent;
  cursor: pointer;
  color: var(--black);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item:last-child::after {
  content: none;
}

.communique-press
  .communique-press--filter
  .filter-select--container-select-item
  .select-item:last-child:hover
  button {
  background-color: var(--black);
  color: var(--white);
}

.communique-press .communique-press--filter .filter-select .select-reinit {
  appearance: none;
  width: max-content;
  background-color: transparent;
  border: unset;
  cursor: pointer;
  font-family: "inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--black);
}

.communique-press
  .communique-press--filter
  .filter-select
  .select-reinit::before {
  content: "";
  display: block;
  flex-shrink: 0;
  mask: url(../images/icon-refresh.svg) no-repeat;
  -webkit-mask: url(../images/icon-refresh.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: black;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.communique-press
  .communique-press--filter
  .filter-select
  .select-reinit:hover::before {
  transform: rotate(180deg);
}

.communique-press .communique-press--list-card {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.communique-press .communique-press--list-card .list-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .communique-press .communique-press--list-card .list-card {
    grid-template-columns: minmax(auto, 400px) minmax(auto, 400px) minmax(
        auto,
        400px
      );
    row-gap: 40px;
  }
}

.communique-press .communique-press--list-card .card-download {
  border-radius: 8px;
  border: 1px solid var(--black);
  appearance: none;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.communique-press .communique-press--list-card .card-download--infos {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.communique-press .communique-press--list-card .card-download--infos p {
  color: var(--grey);
  font-family: "inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.communique-press .communique-press--list-card .card-download--infos .format {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  gap: 18px;
  align-items: center;
}

.communique-press
  .communique-press--list-card
  .card-download--infos
  .format::before {
  content: "";
  display: block;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--black);
  width: 32px;
  height: 32px;
}
.communique-press
  .communique-press--list-card
  .card-download--infos
  .format.pdf::before {
  mask: url(../images/pdf.svg) no-repeat center;
  -webkit-mask: url(../images/pdf.svg) no-repeat
    center;
}
.communique-press
  .communique-press--list-card
  .card-download--infos
  .format.doc::before {
  mask: url(../images/doc.svg) no-repeat center;
  -webkit-mask: url(../images/doc.svg) no-repeat
    center;
}
.communique-press
  .communique-press--list-card
  .card-download--infos
  .format.zip::before {
  mask: url(../images/zip.svg) no-repeat center;
  -webkit-mask: url(../images/zip.svg) no-repeat
    center;
}
.communique-press
  .communique-press--list-card
  .card-download--infos
  .format.calc::before {
  mask: url(../images/xls.svg) no-repeat center;
  -webkit-mask: url(../images/xls.svg) no-repeat
    center;
}
.communique-press
  .communique-press--list-card
  .card-download--infos
  .format.image::before {
  mask: url(../images/img.svg) no-repeat center;
  -webkit-mask: url(../images/img.svg) no-repeat
    center;
}

.communique-press .communique-press--list-card .card-download--infos h4 {
  color: var(--black);
  font-family: "inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.communique-press .communique-press--list-card .card-download--download-btn {
  padding: 8px;
  border-top: 1px solid var(--black);
}

.communique-press
  .communique-press--list-card
  .card-download--download-btn
  button {
  appearance: none;
  border: none;
  color: var(--black);
  background-color: transparent;
  font-family: "aleo";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  margin: auto;
}

.communique-press
  .communique-press--list-card
  .card-download--download-btn
  button::after {
  content: "";
  display: block;
  mask: url(../images/icon-download.svg) no-repeat center;
  -webkit-mask: url(../images/icon-download.svg) no-repeat
    center;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--black);
  width: 12px;
  height: 12px;
}

.communique-press .communique-press--list-card .card-download:hover {
  border-color: var(--green-dark);
  background-color: var(--grey-light);
  transition: background-color 0.3s ease;
}

.communique-press
  .communique-press--list-card
  .card-download:hover
  .card-download--download-btn {
  background-color: var(--green-dark);
  border-top-color: var(--green-dark);
  transition: background-color 0.3s ease, border-top-color 0.3s ease;
}

.communique-press
  .communique-press--list-card
  .card-download:hover
  .card-download--download-btn
  button {
  color: var(--white);
  font-weight: 400;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.communique-press
  .communique-press--list-card
  .card-download:hover
  .card-download--download-btn
  button::after {
  background-color: var(--white);
  transition: background-color 0.3s ease;
}

.communique-press .communique-press--list-card .pagination {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .communique-press .communique-press--list-card .pagination {
    margin-top: 80px;
  }
}
