@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
  --primary-color: rgb(16, 60, 23);
  --secondary-color: hsl(142, 100%, 24%);
  --tertiary-color: hsl(62, 100%, 41%);
  --dark-gray: hsl(0, 0%, 16%);
  --light-gray: rgb(176, 176, 176);
  --water-green: hsl(136, 29%, 82%);
  --bg-color: hsl(47, 47%, 96%);
  --text-color: hsl(0, 0%, 16%);
  background: var(--bg-color);
  font-family: "Poppins", arial, sans-serif;
  height: 100% !important;
}

/* sr-only by ffoodd : https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034 */
.visually-hidden,
.visually-hidden-focusable:not(:focus, :focus-within) {
	border: 0 !important;
	clip-path: inset(50%) !important; /* 2 */
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	width: 1px !important;
	white-space: nowrap !important; /* 3 */
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(caption):not(:focus, :focus-within) {
	position: absolute !important;
}

.visually-hidden *,
.visually-hidden-focusable:not(:focus, :focus-within) * {
	overflow: hidden !important;
}

h2, .h2, h3, .h3, h4, .h4 {
  color: var(--primary-color);
  font-weight: 600;
}

.skip-links {
  margin: 0;
  padding: 0;
}

.skip-links li {
  list-style-type: none;
}

.skip-links li a {
  position: absolute;
  top: 0;
  z-index: 1200;
}

.rando25__header {
  background: var(--primary-color);
  padding: 1.25rem;
}

.rando25__header > .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .rando25__header > .container {
    gap: 0.5rem;
  }
}

.rando25__navWrapper .simple-menu {
  display: flex;
  gap:  2rem;
  margin: 0;
  padding: 0;
}

.rando25__navWrapper .simple-menu a {
  color: var(--water-green);
  font-size: 1.2rem;
  font-weight: 300;
  padding: 0;
  text-decoration: none;
}

.rando25__navWrapper .simple-menu .active a {
  font-weight: 700;
}

.rando25__navWrapper .simple-menu a:hover:after, .rando25__navWrapper .simple-menu a:after {
  content: '';
  display: block;
  line-height: 0.4;
  margin: 0.4rem auto 0 auto;
  min-height: 0.5rem;
  text-align: center;
}

.rando25__navWrapper .simple-menu a:hover:after, .rando25__navWrapper .simple-menu .active a:after {
  content: '•';
}

@media screen and (max-width: 993px) {
  .rando25__navWrapper .simple-menu {
    background: var(--primary-color);
    display: none;
    flex-direction: column;
    gap: 0;
    height: 100vh;
    inset: 116px 0 0 0;
    position: absolute;
  }

   .rando25__navWrapper .rando25__nav--active {
    display:block;
  }
  
  .rando25__navWrapper .simple-menu li {
    border-bottom: 1px solid var(--primary-color);
  }
  
  .rando25__navWrapper .simple-menu a {
    display: block;
    padding: 1rem;
  }
  
  .rando25__navWrapper .simple-menu .active a {
    background: var(--water-green);
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .rando25__navWrapper .simple-menu a:hover {
    background: var(--water-green);
    color: var(--primary-color);
    text-decoration: none;
  }

  .rando25__navWrapper .simple-menu a:hover:after, .rando25__navWrapper .simple-menu .active a:after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .rando25__navWrapper .simple-menu {
    inset: 94px 0 0 0;
  }
}
.rando25__toggleMenu {
  display: none;
}
@media screen and (max-width: 992px) {
  .rando25__toggleMenu {
    display: block;
  }
}
.rando25__logo {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .rando25__logo {
    flex-grow: 1;
  }
}
@media screen and (max-width: 992px) {
  .rando25__nav {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .rando25__logo img {
    height: auto;
    width: 75px;
  }
}
.rando25__return {
  margin: 0;
}
@media screen and (max-width: 576px) {
  .rando25__return span {
    display: none;
  }
}
.rando25__main {
  margin-top: 116px;
}
@media screen and (max-width: 576px) {
  .rando25__main {
    margin-top: 94px;
  }
}
.rando25__banner {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0;
}

@media screen and (max-width: 576px) {
  .rando25__banner {
    padding: 1rem 0;
  }
}

.rando25__banner--trees {
  background: var(--primary-color) url('../img/trees.svg') right bottom no-repeat;
}

@media screen and (max-width: 576px) {
  .rando25__banner--trees {
    background: var(--primary-color);
  }
}

.rando25__banner .container > h1 {
  color: var(--water-green);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1400px) {
  .rando25__lead {
    padding-left: 10%;
  }
}
.rando25__lead h1 {
  color: var(--water-green);
  font-size: 3.375rem;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .rando25__lead h1 {
    font-size: 2.6rem;
  }
}
.rando25__lead p {
  color: var(--water-green);
  font-size: 1rem;
  line-height: 1.2;
}
.rando25__gridImg {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  padding-left: 1.563rem;
  position: relative;
}
.rando25__gridImg:after {
  background: var(--secondary-color) url('data:image/svg+xml,<svg width="87" height="85" viewBox="0 0 87 85" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1_859)"><path d="M40.4204 84.9437V65.8137H25.769L38.6263 51.8583H30.5459L40.4204 37.7628H35.3227L43.4348 28.0464L51.5152 37.7628H46.4175L56.292 51.8583H48.2116L61.1005 65.8137H46.4175V84.9437H40.4204Z" fill="%23C4DFCB"/><path d="M30.5457 18.3255L43.4391 0L56.3008 18.3255H30.5502H30.5457Z" fill="%23C4DFCB"/><path d="M4.79126 84.9437L17.6847 66.6181L30.5464 84.9437H4.79126Z" fill="%23C4DFCB"/><path d="M56.3013 84.9437L69.1947 66.6181L82.0564 84.9437H56.3058H56.3013Z" fill="%23C4DFCB"/><path d="M14.6514 56.8927V37.7628H0L12.8572 23.8074H4.77684L14.6514 9.71185H9.55368L17.6657 0L25.7461 9.71637H20.6484L30.523 23.8119H22.4426L35.3314 37.7673H20.6484V56.8973H14.6514V56.8927Z" fill="%23C4DFCB"/><path d="M66.1621 56.8927V37.7628H51.5107L64.368 23.8073H56.2876L66.1621 9.71182H61.0644L69.1765 -3.05176e-05L77.2569 9.71634H72.1592L82.0337 23.8119H73.9533L86.8422 37.7673H72.1592V56.8972H66.1621V56.8927Z" fill="%23C4DFCB"/></g><defs><clipPath id="clip0_1_859"><rect width="86.8418" height="84.9437" fill="white"/></clipPath></defs></svg>');
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: '';
  display: block;
  height: 162px;
  inset: auto -20px -40px auto;
  position: absolute;
  width: 162px;
}
@media screen and (max-width: 991px) {
  .rando25__gridImg {
    display: none;
  }
}
.rando25__gridImg img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
}
.rando25__gridImg img:nth-child(1) {
  align-self: end;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  justify-self: end;
  max-width: 170px;
}
.rando25__gridImg img:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  justify-self: end;
  max-width: 190px;
}
.rando25__gridImg img:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  max-width: 360px;
}
/* .rando25__banner--bgImg {
  background: var(--primary-color) url('../../../public/banniere/banniere.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
}
.rando25__banner--bgImg:after {
  background: linear-gradient(to left, rgba(255,0,0,0) 30%, var(--primary-color) 50%);
  content: '';
  display: block;
  inset: 0;
  position: absolute;
}
.rando25__banner--bgImg > * {
  position: relative;
  z-index: 2;
} */
.rando25__title--white {
  color: white;
}
.rando25__listPicto {
  align-items: center;
  background: var(--tertiary-color);
  border-radius: 50%;
  color: var(--primary-color);
  display: inline-flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.rando25__trombi {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}
@media screen and (max-width: 1199px) {
  .rando25__trombi {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .rando25__trombi {
    grid-template-columns: 1fr;
  }
}
.rando25__trombiPerson {
  background: white;
  border: 1px solid var(--primary-color);
  display: flex;
  gap: 0.5rem;
}
.rando25__trombiPerson--honor {
  background: var(--water-green);
}
.rando25__trombiPicture {
  flex-shrink: 0;
}
.rando25__trombiPicture img {
  height: 100%;
  max-width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .rando25__trombiPicture img {
    max-width: 80px;
  }
}
.rando25__trombiInfos {
  padding: 0.5rem;
}
.rando25__trombiInfos *:last-child {
  margin-bottom: 0;
}
.rando25__trombiInfosName {
  font-size: 1.2rem;
  font-weight: 600;
}
.rando25__trombiInfosDetails {
  margin: 0;
  padding: 0;
}
.rando25__trombiInfosDetails li {
  list-style-type: none;
  overflow-wrap: anywhere;
}
.rando25__trombiInfosDetails li a {
  color: var(--primary-color);
  text-decoration: none;
}
.rando25__trombiInfosDetails li a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.rando25__orga .rando25__trombiPerson {
  margin-bottom: 1rem;
}
.rando25__orgaTop {
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .rando25__orgaTop {
    width: auto;
  }
}
.rando25__orgaCol {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 991px) {
  .rando25__orgaCol {
    grid-template-columns: 1fr;
  }
}
.rando25__orgaCol .rando25__trombiPerson {
  margin-bottom: 0;
}
.rando25__footer {
  background: var(--primary-color);
  color: white;
  padding: 1rem 0;
}
.rando25__footer .container {
  position: relative;
}
.rando25__footer *:last-child {
  margin-bottom: 0;
}
.rando25__footer ul {
   margin: 0;
   padding: 1.5rem 0;
}
.rando25__footer li {
  display: inline-block;
  list-style-type: none;
}
.rando25__footer li:not(:last-child):after {
  content: "|";
  display: inline-block;
  margin: 0 1.25rem;
}
.rando25__footer ul a {
    color: white;
    text-decoration: underline;
}
@media screen and (max-width: 576px) {
  .rando25__footer li {
    display: block;
    margin-bottom: 1rem;
  }
  .rando25__footer li:not(:last-child):after {
    display: none;
  }
  .rando25__footer ul a {
    display: block;
    text-align: center;
  }
}
.rando25__goTop {
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.rando25__goTop a {
  background: var(--water-green);
  border-radius: 6px;
  color: var(--primary-color);
  padding: 6px 12px;
  text-decoration: none;
}
.rando25__goTop a:hover {
  background: var(--tertiary-color);
  color: var(--primary-color);
}
.btn-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-bg: var(--water-green);
  --bs-btn-border-color: var(--water-green);
  --bs-btn-hover-color: var(--primary-color);
  --bs-btn-hover-bg: var(--tertiary-color);
  --bs-btn-hover-border-color: var(--tertiary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--primary-color);
  --bs-btn-active-bg: var(--tertiary-color);
  --bs-btn-active-border-color: var(--tertiary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-padding-y: 0.565rem;
  font-weight: 600;
}

.btn-primary__sm {
  font-weight: 400;
}

.btn-secondary {
  --bs-btn-color: var(--water-green);
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-hover-color: var(--primary-color);
  --bs-btn-hover-bg: var(--tertiary-color);
  --bs-btn-hover-border-color: var(--tertiary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--water-green);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  font-weight: 400;
}

.btn-tertiary {
  --bs-btn-color: var(--water-green);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--primary-color);
  --bs-btn-hover-bg: var(--tertiary-color);
  --bs-btn-hover-border-color: var(--tertiary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--water-green);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  font-weight: 400;
}

.pagination {
  gap: 0.5rem;
  margin-top: 1rem;
}
.pagination li {
  border-radius: 6px;
  display: inline-block;
  padding: 0.2rem;
}
.pagination li a {
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
}
.pagination .active a {
  font-weight: 700;
}
.post-meta {
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom : 1rem;
  padding-top: 1rem;
}
.post-meta > * {
  margin-bottom: 0;
}
.post-meta a {
  color: var(--primary-color);
}
.post-attachments {
  border-bottom: 1px solid var(--primary-color);
  margin: 0;
  padding:0 0 1rem 0;
}
.post-attachments-list {
  margin: 0;
  padding:0;
}
.post-attachments-item {
  list-style-type: none;
}
.post-content a {
    color: var(--primary-color);
}
.post-content a:hover {
    color: var(--secondary-color);
}
.widget .submit {
    background: var(--water-green);
    border: 1px solid var(--water-green);
    border-radius: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}
.post-feedback {
  margin-top: 1.25rem;
  padding: 0;
}
.widget a, .feedback__comments a, .pagination a, .post.short a, .arch-block a {
    color: var(--primary-color);
}
.widget a:hover, .feedback__comments a:hover, .pagination a:hover, .post.short a:hover, .arch-block a:hover {
    color: var(--secondary-color);
}
.widget .submit:hover, .widget .submit:active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.comment-form {
    background: var(--water-green);
    border-radius: 0.5rem;
}
.media-link {
    display:inline-block;
}
.media-link:hover .media {
    border: 1px solid var(--primary-color);
}
.media {
    border: 1px solid var(--bg-color);
    border-radius : 0.5rem;
    transition: all 0.3s;
}
.sidebar {
  background: var(--water-green);
  border-radius: 20px;
  padding: 1.875rem 1rem;
  position: sticky;
  top: 120px;
}

.sidebar .widgets:not(:last-child) > .widget {
  border-bottom: 1px solid black;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
.sidebar .widgets > .widget > *:last-child {
  margin-bottom: 0;
}
.sidebar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align:center;
}
.navlinks .btn {
  margin-bottom: 0.5rem;
}

.rando25__articlesTitle {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.8;
  text-align: center;
}

.rando25__articlesList {
  background: white;
  border-radius: 18px;
  margin: 1.25rem auto;
  padding: 0.625rem 1.875rem 1.563rem 1.875rem;
}

@media screen and (max-width: 576px) {
  .rando25__articlesList {
    padding: 0.625rem 1rem 1rem 1rem;
  }
}

.rando25__articlesList .list-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
}

@media screen and (max-width: 993px) {
  .rando25__articlesList .list-group {
    grid-template-columns: 1fr;
  }
}

.rando25__articlesList .list-group-item {
  border: 0;
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0;
}

.rando25__articlesList .list-group-item .h5 {
  color: var(--primary-color);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

.rando25__articlesList .list-group-item small {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 5.7;
}

.rando25__articlesList .list-group-item p {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
}

.rando25__join {
  align-items: center;
  background: var(--water-green) url('data:image/svg+xml,<svg width="87" height="85" viewBox="0 0 87 85" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1_859)"><path d="M40.4204 84.9437V65.8137H25.769L38.6263 51.8583H30.5459L40.4204 37.7628H35.3227L43.4348 28.0464L51.5152 37.7628H46.4175L56.292 51.8583H48.2116L61.1005 65.8137H46.4175V84.9437H40.4204Z" fill="%23103c17"/><path d="M30.5457 18.3255L43.4391 0L56.3008 18.3255H30.5502H30.5457Z" fill="%23103c17"/><path d="M4.79126 84.9437L17.6847 66.6181L30.5464 84.9437H4.79126Z" fill="%23103c17"/><path d="M56.3013 84.9437L69.1947 66.6181L82.0564 84.9437H56.3058H56.3013Z" fill="%23103c17"/><path d="M14.6514 56.8927V37.7628H0L12.8572 23.8074H4.77684L14.6514 9.71185H9.55368L17.6657 0L25.7461 9.71637H20.6484L30.523 23.8119H22.4426L35.3314 37.7673H20.6484V56.8973H14.6514V56.8927Z" fill="%23103c17"/><path d="M66.1621 56.8927V37.7628H51.5107L64.368 23.8073H56.2876L66.1621 9.71182H61.0644L69.1765 -3.05176e-05L77.2569 9.71634H72.1592L82.0337 23.8119H73.9533L86.8422 37.7673H72.1592V56.8972H66.1621V56.8927Z" fill="%23103c17"/></g><defs><clipPath id="clip0_1_859"><rect width="86.8418" height="84.9437" fill="white"/></clipPath></defs></svg>');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: 18px;
  display: flex;
  gap: 1rem;
  margin: 0 auto 1.25rem auto;
  padding: 2.8rem;
}

@media screen and (max-width: 992px) {
  .rando25__join {
    background: var(--water-green);
    flex-direction: column;
    padding: 1rem;
  }
}

.rando25__join > div {
  width: 40%;
}

@media screen and (max-width: 992px) {
  .rando25__join > div {
    width: 100%;
  }
}

.rando25__join h2 {
  color: var(--primary-color);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 576px) {
  .rando25__join h2 {
    font-size: 1.8rem;
    text-align: left;
  }
}

.rando25__join p {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
}

.rando25__post {
  background: white;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  padding: 3.125rem;
}

.rando25__post .post-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.rando25__post .post-excerpt {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.rando25__post .post-excerpt strong {
  font-weight: 400;
}

.rando25__post .post-excerpt:after {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='35' viewBox='0 0 22 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.14552 35V23.2323H0.132812L8.04187 14.6477H3.07125L9.14552 5.97696H6.0097L10.9998 0L15.9704 5.97696H12.8346L18.9088 14.6477H13.9382L21.8667 23.2323H12.8346V35H9.14552Z' fill='%23396141'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 35px;
  margin: 0 auto;
  width: 35px;
}

.rando25__post .post-content p {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.rando25__post .post-content a:has(> img) {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.rando25__post .post-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
}

#search form > p {
  align-items: center;
  display:flex;
  gap: 0.625rem;
}

#search input[type="text"] {
  border: 0;
  border-bottom: 1px solid var(--primary-color);
  flex-grow: 1;
  font-size: 1.6rem;
}

#search input[type="submit"] {
  align-self: stretch;
  background: var(--primary-color);
  color: var(--water-green);
  display: block;
  flex-shrink: 0;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.widget.categories ul {
  columns: 2;
}

.arch-block--header {
  margin-bottom: 1.875rem;
  text-align: center;
}
#other-criteria, #more-arch, #arch-by-tag {
  margin-top: 1.875rem;
}

.arch-block--header:after {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='35' viewBox='0 0 22 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.14552 35V23.2323H0.132812L8.04187 14.6477H3.07125L9.14552 5.97696H6.0097L10.9998 0L15.9704 5.97696H12.8346L18.9088 14.6477H13.9382L21.8667 23.2323H12.8346V35H9.14552Z' fill='%23396141'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 35px;
  margin: 0 auto;
  width: 35px;
}

.arch-block--inner {
  display: flex;
  flex-wrap:wrap;
  gap: 1.875rem 5rem;
}

.arch-by-year__each-year {
  border-bottom:  1px solid var(--primary-color);
}

.arch-list  {
  padding-left: 1rem;
}

.arch-list li {
  margin-bottom: 0.5rem;
}

.arch-cat-list, .arch-tag-list, .arch-page-list {
  column-count: auto;
  column-width: 8rem;
  width: 100%;
}

@media screen and (max-width: 993px) {
  .rando25__banner--bgImg {
    background: var(--primary-color);
  }
}

@media screen and (max-width: 576px) {
  .rando25__goTop {
    right: 1rem;
    top: -28px;
    transform: none;
  }
}

@media screen and (max-width: 376px) {
  .media-link {
    display: block;
  }
  .media-link .media {
    display: block;
    height: auto;
    width: 100%;
  }

}