#post h2 {
    margin-top: 40px;
}

#post h3,
#post h4 {
    margin-top: 30px;
    color: #004080;
}

#post p,
#post li,
#post dd {
    margin-top: 20px;
}

#post ul,
#post ol {
    padding-left: 30px;
}

#post ul {
    list-style: circle;
}

#post ul li {
    list-style: circle;
}

#post ol {
    padding-left: 30px;
}

#post ol li {
    list-style: decimal;
}

#post a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#post a:hover {
    text-decoration: underline;
}

#post cite {
    border-left: 4px solid #004080;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: #f0f4f8;
}

#post figure {
    text-align: center;
    margin: 45px 0;
}

#post figure img {
    max-width: 100%;
    border-radius: 6px;
}

#post figure figcaption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #555;
}

/* .nota {
  background: #fff3cd;
  padding: 0.8rem;
  border: 1px solid #ffeeba;
  border-radius: 4px;
  font-size: 0.9rem;
} 
*/



/* .arrow2 {
    width: 30%;
    height: 30%;
    background: url('<?= KP_IMG ?>arrow.svg') no-repeat;
    background-size: contain;
}

.arrow-right2 {
    transform: rotate(180deg);
} */

#blog-page>main {
    padding: 56px 0;
}

#blog-page #filter {
    display: flex;
    margin-bottom: 56px;
}

#blog-page #filter>div {
    width: 50%;
}

#blog-page #filter input {
    width: 80%;
    padding: 18px;
    border: 1px solid #97A8BA;
    border-radius: 8px;
    font-size: 14px;
}

#blog-page #filter #search button {
    padding: 18px 24px;
    font-size: 16px;
    margin-left: 12px;
}

#blog-page #filter #checks {
    display: flex;
    align-items: center;
    justify-content: end;
}

#blog-page #filter #checks button {
    background: unset;
    border: 1px solid #97A8BA;
    color: #97A8BA;
    border-radius: 10px;
    padding: 13px 16px;
    margin-left: 20px;
    font-size: 12px;
    font-weight: bold;
}

#blog-page #filter #checks button.active {
    border-color: #000748;
    color: #000748;
}


#post {
    margin-top: 50px;
}

#post .banner {
    height: 490px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;

}

#post .banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#post .banner .infos {
    padding: 170px 0 36px 36px;
    color: #fff;
}

#post .banner .infos .category {
    font-size: 14px;
    font-weight: bold;
}

#post .banner .infos h1 {
    font-size: 50px;
    width: 800px;
}

#post .banner .infos p {
    font-size: 18px;
    width: 600px;
    margin-top: 16px;
}


#post header {
    margin-top: 50px;
}

#post header .category {
    font-size: 14px;
    font-weight: bold;
}

#post header h1 {
    width: 800px;
    font-size: 48px;
    line-height: 52px;
}

#post header p {
    width: 880px;
    font-size: 24px;
    margin-top: 16px;
}

#post main {
    margin: 50px 0;
    font-size: 20px;
}

#post main .post-content {
    width: 50%;
}

#post main .post-img {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

#post main .post-img img {
    width: 550px;
    height: 420px;
    border-radius: 10px;
}


#blog-page hr {
    margin: 80px 0 70px;
}


#post-relat {
    margin-bottom: 60px;
}

#post-relat>h1 {
    font-size: 32px;
    color: #07306F;
    text-align: center;
    margin-bottom: 70px;
}



.pagination {
    display: flex;
    justify-self: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #eff1f4;
    border-radius: 4px;
    font-weight: bold;
    color: #97A8BA;
    transition: all 0.1s;
}

.pagination a.active,
.pagination a:hover {
    border: 2px solid #00dbb9;
    color: #000748;
    transform: scale(1.2);
}

#repository {
    z-index: 1;
}


@media(max-width: 1330px) {

    #post header p {
        width: 100%;
    }

    #post header h1 {
        width: 100%;
    }
}