/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
#loading-indicator {
  content: "";
  position: absolute;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  top: 50%;
  left: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
}
#loading-indicator .spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.post-teaser, .page-teaser, .agenda-teaser {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-teaser .card, .page-teaser .card, .agenda-teaser .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
  height: 100%;
  width: 100%;
}
.post-teaser .card:hover .card__header img, .post-teaser .card:focus .card__header img, .page-teaser .card:hover .card__header img, .page-teaser .card:focus .card__header img, .agenda-teaser .card:hover .card__header img, .agenda-teaser .card:focus .card__header img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.post-teaser .card:hover .card__footer .see-more .arrow, .post-teaser .card:focus .card__footer .see-more .arrow, .page-teaser .card:hover .card__footer .see-more .arrow, .page-teaser .card:focus .card__footer .see-more .arrow, .agenda-teaser .card:hover .card__footer .see-more .arrow, .agenda-teaser .card:focus .card__footer .see-more .arrow {
  opacity: 1;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.post-teaser .card__header, .page-teaser .card__header, .agenda-teaser .card__header {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.post-teaser .card__header img, .page-teaser .card__header img, .agenda-teaser .card__header img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.post-teaser .card__body, .page-teaser .card__body, .agenda-teaser .card__body {
  padding-top: 10px;
}
.post-teaser .card__body .categories, .page-teaser .card__body .categories, .agenda-teaser .card__body .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.post-teaser .card__body .categories__item, .page-teaser .card__body .categories__item, .agenda-teaser .card__body .categories__item {
  background-color: #191414;
  border-radius: 30px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
}
.post-teaser .card__body h2, .page-teaser .card__body h2, .agenda-teaser .card__body h2 {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 0.65vw + 17.57px, 30px);
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 5px;
}
.post-teaser .card__body .excerpt, .page-teaser .card__body .excerpt, .agenda-teaser .card__body .excerpt {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 0.13vw + 11.51px, 14px);
  color: #191414;
}
.post-teaser .card__footer, .page-teaser .card__footer, .agenda-teaser .card__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  width: 100%;
}
.post-teaser .card__footer .see-more, .page-teaser .card__footer .see-more, .agenda-teaser .card__footer .see-more {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  color: var(--c-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}
.post-teaser .card__footer .see-more .arrow, .page-teaser .card__footer .see-more .arrow, .agenda-teaser .card__footer .see-more .arrow {
  content: url("../../svg/arrow-small.svg");
  opacity: 0;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.agenda-teaser .card__body {
  position: relative;
  padding-top: 0;
  margin-top: 22px;
  padding-inline: clamp(0px, 4.26vw + -41.7px, 40px) clamp(0px, 2.13vw + -20.85px, 20px);
}
@media screen and (min-width: 981px) {
  .agenda-teaser .card__body {
    margin-top: -25px;
  }
}
.agenda-teaser .card__body .date {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #191414;
  border-radius: 100px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(12px, 0.26vw + 11.03px, 16px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: clamp(10px, 0.32vw + 8.79px, 15px) clamp(10px, 0.97vw + 6.36px, 25px) clamp(8px, 0.32vw + 6.79px, 13px);
  line-height: 1;
}
.agenda-teaser .card__body .types {
  margin-block: clamp(10px, 1.62vw + 3.93px, 35px) clamp(10px, 0.32vw + 8.79px, 15px);
}
.agenda-teaser .card__body .types__item {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #191414;
  font-size: clamp(13px, 0.19vw + 12.27px, 16px);
}
.agenda-teaser .card__body .informations, .agenda-teaser .card__body .location {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 0.26vw + 13.03px, 18px);
  color: #191414;
  margin-top: 5px;
}
.agenda-teaser .card__body h2 {
  margin-bottom: clamp(15px, 0.97vw + 11.36px, 30px);
}
.agenda-teaser .card__footer {
  padding-inline: clamp(0px, 4.26vw + -41.7px, 40px) clamp(0px, 2.13vw + -20.85px, 20px);
  padding-top: clamp(10px, 1.29vw + 5.15px, 30px);
}

body.blog main.container, .post-type-archive-agenda main.container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(9px, 6.78vw + -16.41px, 50px);
}
@media screen and (min-width: 981px) {
  body.blog main.container, .post-type-archive-agenda main.container {
    padding-inline: clamp(50px, 1.06vw + 39.57px, 60px);
  }
}
body.blog .header, .post-type-archive-agenda .header {
  position: relative;
  padding-top: 23px;
}
body.blog .header__content, .post-type-archive-agenda .header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.blog .header__content #breadcrumbs, .post-type-archive-agenda .header__content #breadcrumbs {
  margin-bottom: 22px;
}
body.blog .header__content h1, .post-type-archive-agenda .header__content h1 {
  margin-bottom: 15px;
}
body.blog section.filters-container, .post-type-archive-agenda section.filters-container {
  width: 100%;
  padding-block: 34px 39px;
}
body.blog section.filters-container button, .post-type-archive-agenda section.filters-container button {
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0;
}
@media screen and (max-width: 980px) {
  body.blog section.filters-container button, .post-type-archive-agenda section.filters-container button {
    display: block;
  }
}
@media screen and (max-width: 980px) {
  body.blog section.filters-container .filters-container-for-mobile, .post-type-archive-agenda section.filters-container .filters-container-for-mobile {
    display: none;
    bottom: 0;
    background-color: #ffffff;
    padding-block: 25px;
  }
}
body.blog section.filters-container .filters, .post-type-archive-agenda section.filters-container .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 980px) {
  body.blog section.filters-container .filters, .post-type-archive-agenda section.filters-container .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
body.blog section.filters-container .filter-text, .post-type-archive-agenda section.filters-container .filter-text {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  white-space: nowrap;
  margin-right: 22px;
}
body.blog section.filters-container .filter-title, .post-type-archive-agenda section.filters-container .filter-title {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  margin-right: 10px;
  white-space: nowrap;
}
body.blog section.filters-container .category-filter, body.blog section.filters-container .category-filter > .checkboxes, .post-type-archive-agenda section.filters-container .category-filter, .post-type-archive-agenda section.filters-container .category-filter > .checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
body.blog section.filters-container .category-filter input[type=checkbox], body.blog section.filters-container .category-filter > .checkboxes input[type=checkbox], .post-type-archive-agenda section.filters-container .category-filter input[type=checkbox], .post-type-archive-agenda section.filters-container .category-filter > .checkboxes input[type=checkbox] {
  display: none;
}
body.blog section.filters-container .category-filter label, body.blog section.filters-container .category-filter > .checkboxes label, .post-type-archive-agenda section.filters-container .category-filter label, .post-type-archive-agenda section.filters-container .category-filter > .checkboxes label {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  cursor: pointer;
  color: #191414;
  border: 2px solid #191414;
  border-radius: 100px;
  padding-block: 6px 4px;
  padding-inline: 14px;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}
body.blog section.filters-container .category-filter label:hover, body.blog section.filters-container .category-filter label:focus, body.blog section.filters-container .category-filter label.is-active, body.blog section.filters-container .category-filter > .checkboxes label:hover, body.blog section.filters-container .category-filter > .checkboxes label:focus, body.blog section.filters-container .category-filter > .checkboxes label.is-active, .post-type-archive-agenda section.filters-container .category-filter label:hover, .post-type-archive-agenda section.filters-container .category-filter label:focus, .post-type-archive-agenda section.filters-container .category-filter label.is-active, .post-type-archive-agenda section.filters-container .category-filter > .checkboxes label:hover, .post-type-archive-agenda section.filters-container .category-filter > .checkboxes label:focus, .post-type-archive-agenda section.filters-container .category-filter > .checkboxes label.is-active {
  background-color: #191414;
  color: #ffffff;
}
@media screen and (max-width: 980px) {
  body.blog section.filters-container .category-filter, .post-type-archive-agenda section.filters-container .category-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  body.blog section.filters-container .category-filter .checkboxes, .post-type-archive-agenda section.filters-container .category-filter .checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  body.blog section.filters-container .category-filter .checkboxes, .post-type-archive-agenda section.filters-container .category-filter .checkboxes {
    grid-template-columns: 1fr;
  }
}
body.blog section.filters-container label.filter-title, .post-type-archive-agenda section.filters-container label.filter-title {
  margin-bottom: 0;
  margin-right: 0;
}
body.blog section.blog-list-container, .post-type-archive-agenda section.blog-list-container {
  position: relative;
  margin-inline: auto;
  padding-block: clamp(30px, 2.39vw + 21.02px, 67px);
}
body.blog section.blog-list-container .blog-grid-container .grid, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 0.78vw + 17.09px, 32px);
}
@media screen and (min-width: 601px) {
  body.blog section.blog-list-container .blog-grid-container .grid, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 981px) {
  body.blog section.blog-list-container .blog-grid-container .grid, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1401px) {
  body.blog section.blog-list-container .blog-grid-container .grid, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.blog section.blog-list-container .blog-grid-container .grid article, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid article {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
@media screen and (min-width: 601px) {
  body.blog section.blog-list-container .blog-grid-container .grid article, .post-type-archive-agenda section.blog-list-container .blog-grid-container .grid article {
    max-width: 485px;
  }
}
body.blog section.blog-list-container .blog-grid-container .pagination, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination {
  position: relative;
}
body.blog section.blog-list-container .blog-grid-container .pagination:has(ul.page-numbers), .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination:has(ul.page-numbers) {
  margin-top: clamp(45px, 4.86vw + -13.33px, 80px);
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 7px;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow), .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow) {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  color: #8E8E8E;
  background-color: #EEEEEE;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow) .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow) .arrow {
  content: url("../../svg/arrow-half-left.svg");
  height: 11px;
  width: 5.5px;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a.prev, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).prev, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a.prev, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).prev {
  margin-right: 42px;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a.next, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).next, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a.next, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).next {
  margin-left: 42px;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a.next .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).next .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a.next .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).next .arrow {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a.current, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a:hover, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a:focus, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).current, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):hover, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):focus, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a.current, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a:hover, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a:focus, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).current, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):hover, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):focus {
  background-color: var(--c-secondary);
  color: #ffffff;
}
body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a.current .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a:hover .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers a:focus .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).current .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):hover .arrow, body.blog section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):focus .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a.current .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a:hover .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers a:focus .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow).current .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):hover .arrow, .post-type-archive-agenda section.blog-list-container .blog-grid-container .pagination .page-numbers span:not(.arrow):focus .arrow {
  content: url("../../svg/arrow-half-left-white.svg");
}
/*# sourceMappingURL=archive.css.map */
