main{
    padding-bottom: 80px;
}
.archive .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.archive .head>.title>* {
    margin: 0;
    padding: 0;
    font-weight: 800;
    font-size: 32px;
    line-height: 50px;
    color: var(--primary-color);
}

.archive .head>.breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

.archive .head>.breadcrumbs li {
    position: relative;

}

.archive .head>.breadcrumbs li:not(:first-child) {
    padding-right: 15px;
}

.archive .head>.breadcrumbs li:not(:first-child)::before {
    content: '/';
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    text-align: right;
    text-transform: capitalize;
    color: var(--muted-color);
}

.archive .head>.breadcrumbs li>a {
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    text-align: right;
    text-transform: capitalize;
    color: var(--muted-color);
}


.archive-posts {
    margin: 60px;
}

.archive-posts .pagination {
    margin-top: 40px;
}

.archive-posts .pagination ul {
    width: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.archive-posts .pagination ul li {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 54px;
    height: 54px;
    background: #E5EAF2;
    border-radius: 12px;
}

.archive-posts .pagination a,
.archive-posts .pagination span {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-color);
}

.archive-posts .pagination span.current {
    border-radius: 12px;
    background: #193046;
    color: #FFFFFF;
}

.archive-posts .pagination .prev,
.archive-posts .pagination .next {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
}

.archive-posts .post-cards {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.archive-posts .post-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    box-sizing: border-box;
    width: calc((100% / 4) - 20px);
}

.archive-posts .post-card .image-holder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.archive-posts .post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: -10px;
}

.archive-posts .post-card .image-holder .categoreis {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.archive-posts .post-card .image-holder .categoreis a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    box-sizing: border-box;
    padding: 4px 24px 4px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #F8F8F8;
    position: relative;
}

.archive-posts .post-card .image-holder .categoreis a::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #FFFFFF;
    border-radius: 50%;
    right: 11px;
    top: calc(50% - 3px);
}

.archive-posts .post-card h2 {
    font-weight: 800;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
    margin: 0;
}

.archive-posts .post-card a {
    color: inherit;
}

.archive-posts .post-card p {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
    color: var(--muted-color)
}

.archive-posts .post-card .more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
}

.archive-posts .post-card .more>* {
    display: flex;
    align-items: center;
    gap: 8px;
}

.archive-posts .post-card .more a {
    color: var(--primary-color);
}

.archive-posts .post-card .more .date {
    color: var(--muted-color);
}

.archive .filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 34px;
    background: #F8F8F8;
    border-radius: 24px;
    margin-top: 40px;
}

.archive .filters .field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 15px;
}

.archive .filters .field:has(textarea) {
    align-items: flex-start;
}

.archive .filters .field>input,
.archive .filters .field select {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 5px 20px 5px 5px;
    resize: none;
    flex: 1;
}

.archive .filters .field>label {
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--primary-color);
    border-left: 1px solid #E8E8E8;
    padding-left: 20px;
}

.archive .filters>span {
    font-weight: 800;
    font-size: 32px;
    line-height: 50px;
    color: var(--primary-color);
}

.seo-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.seo-content .container {
    border-radius: 40px;
    padding: 48px 40px;
    background: #F8F8F8;
    box-sizing: border-box;
}

.seo-content .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--primary-color);
    max-height: 200px;
    overflow: hidden;
}

.seo-content .content.o {
    max-height: none;
}


.seo-content .actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0;
}

.seo-content .actions .read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
    border:none;
    outline: none;
    gap: 20px;
    cursor: pointer;
}