.template__archive {
    display: flex;
    flex-flow: column;
    gap: 50px;
}
.template__archive--notFound {
    text-align: center;
}
.template__archive .latestnews__intro {
    padding: 0;
}
.template__archive .latestnews__intro h1,
.template__archive .latestnews__intro h2,
.template__archive .latestnews__intro p {
    margin: 0 auto !important;
}
.template__archive .latestnews__intro p {
    padding-left: 35px;
    padding-right: 35px;
    color: var(--secondary-text);
}
.template__archive #searchform {
    max-width: 691px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 50px auto 0;
}
.template__archive #searchform input {
    flex-grow: 1;
    display: block;
    padding: 12px;
    height: 57px;
    border: 1px solid rgb(1, 48, 50);
    color: #aaa;
    font-family: var(--font-family-default);
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
}
.template__archive #searchform button {
    gap: 10px;
    min-height: 0;
    height: 57px;
}
.template__archive #searchform button svg {
    max-width: 16px;
    min-width: 16px;
}
.template__archive--list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.template__archive--list-item {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    float: none !important;
    width: 100% !important;
    padding: 16px !important;
    margin: 0 !important;
    border: 0 !important;
}
.template__archive--list-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.template__archive--list-image canvas {
    display: block;
    width: 100%;
    height: auto;
}
.template__archive--list-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.template__archive--list h3 {
    flex-grow: 1;
    width: 100%;
    font-weight: 400;
    font-size: 19px;
    line-height: 110%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.template__archive--list h3 a {
    color: inherit !important;
}
.template__archive--list p {
    width: 100%;
    margin: 0 !important;
}
.template__search--title-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.template__search--title-wrapper h1 {
    text-align: center !important;
}
.template__search--title-wrapper form {
    margin-top: 50px;
}
.placeholder-logo {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #013032;
    padding: 20px;
}

#content .archive-content{
    border-radius: 50px;
}
.template__archive--list-image,
.template__archive--list-image img{
    border-radius: 40px;
}

.site-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    gap: 8px;
    margin: 0px !important;
    padding: 0px !important;
}

.page-numbers {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border: 1px solid #aaa;
  border-radius: var(--template-radius, 8px);
  background: #fff;
  color: #000 !important;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.page-numbers:hover,
.page-numbers.current {
  background: #013032;
  border-color: #013032;
  color: #fff !important;
}

.page-numbers svg{
    width: 6px;
}


@media screen and (min-width: 744px) {
    .template__archive .latestnews__intro p {
        padding-left: 19px;
        padding-right: 19px;
    }
    .template__archive #searchform {
        flex-direction: row;
        gap: 20px;
    }
    .template__archive #searchform button {
        max-width: 152px;
        min-width: 152px;
    }
    .template__archive--list-item {
        padding: 24px !important;
    }
    .template__archive--list-image canvas {
        height: 350px;
    }
    .template__archive--list h3 {
        font-size: 18px;
        letter-spacing: 0.02em;
    }
}
@media screen and (min-width: 1024px) {
    .template__archive .latestnews__intro p {
        padding-left: 38px;
        padding-right: 38px;
    }
    .template__archive--list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .template__archive--list-item {
        padding: 16px !important;
    }
    .template__archive--list-image canvas {
        height: 216px;
    }
}
@media screen and (min-width: 1280px) {
    .template__archive--title-wrapper {
        display: flex;
        gap: 32px;
    }
    .template__archive .latestnews__intro h1,
    .template__archive .latestnews__intro h2,
    .template__archive .latestnews__intro p {
        text-align: left;
    }
    .template__archive .latestnews__intro p {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    .template__archive #searchform {
        margin-top: 0;
        max-width: 588px;
        min-width: 588px;
        gap: 8px;
    }
    .template__archive--list {
        gap: 28px;
    }
    .template__archive--list h3 {
        font-size: 20px;
        letter-spacing: 0.05em;
    }
}