.blog-full-container {
    display: block;
}

.header-blog {
    width: 100%;
    background: radial-gradient(circle, rgb(3, 62, 138) 17%, rgb(2, 30, 67) 82%);
}

.header-blog-logo {
    width: 300px;
    padding: 30px 0 0;
    margin-left: 100px;
}

.header-blog-logo img {
    display: block;
}

.header-category-buttons {
    display: flex;
    width: 90%;
    margin: 0 auto;
    align-items: baseline;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}

.category-button {
    padding: 20px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.category-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-button a img {
    height: 150px;
    padding-right: 20px;
    width: auto;
}

.category-button a h2 {
    color: white;
    font-size: calc(1em + 1vw);
}

.showSubscribeForm {
    width: 100%;
    display: flex;
    justify-content: center;
}

.showSubscribeFormButton {
    border: 2px solid #89C5E8;
    color: #89C5E8;
    padding: 10px 20px;
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 700;
    background: none;
}

.showSubscribeFormButton:hover {
    cursor: pointer;
}

.blog-tecnico-banner {
    background: #0056B8;
    padding: 0 80px;
    position: relative;
    display: flex;
    height: 300px;
}

.blog-tecnico-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.blog-tecnico-text h2 {
    color: #009ADE;
    font-size: calc(2em + 1vw);
    margin: 0;
    padding: 50px 50px 0;
}

.blog-tecnico-text h3 {
    color: white;
    font-weight: 700;
    padding: 0 0 0 50px;
    font-size: calc(2em + 1vw);
    margin: 0;
}

.blog-tecnico-text a {
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 2em;
    color: #89C5E8;
    font-weight: 700;
    border: 2px solid #89C5E8;
}

.blog-tecnico-image {
    width: 600px;
    padding: 30px;
    margin-top: -150px;
}

.posts-container {
    padding: 90px 80px 30px;
    display: flex;
    flex-wrap: wrap;
}

.posts-container form {
    width: 20%;
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
    height: fit-content;
}

.posts-container form h2 {
    margin: 0;
    color: white;
    background: #034B96;
    padding: 10px 20px;
    font-size: calc(0.8em + 0.5vw);
}

.posts-container form label {
    color: #022753;
    padding: 20px;
}


.posts-container form label:hover {
    background: #E9E9E9;
}

.listed-posts {
    width: 80%;
}

.posts-list {
    display: flex;
    flex-direction: column;
}

.post-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
    justify-content: center;
    width: 100%;
}

.post {
    width: 40%;
    position: relative;
    margin: 50px auto 40px;
}

.post-category {
    background: #F00;
    padding: 10px 30px 10px 60px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: -30px;
}

.post-category a {
    color: white;
}

.post-thumbnail {
    height: 250px;
    overflow: hidden;
    width: 100%;
    border-radius: 60px 0 0 0;
    position: relative;
}

.post-thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-content {
    background: #E9E7E5;
    padding: 20px 50px;
    box-sizing: border-box;
    border-radius: 0 0 30px 30px;
    min-height: 300px;
    display: grid;
}

.post-title {
    margin: 0 auto;
}

.post-title a {
    color: #034B96;
}

.post-excerpt {
    color: #646363;
    font-size: calc(0.4em + 0.5vw);
    margin: 0 auto;
}

.meta-post-info {
    width: 100%;
    align-self: end;
}

.author-info {
    display: flex;
    width: 100%;
    gap: 2rem;
    align-items: center;
}

.post-author-avatar {
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
}

.author-name-date {
    text-align: right;
    flex: 1;
}

.post-author {
    color: #034B96;
    font-weight: 700;
    font-size: calc(0.7em + 0.5vw);
}

.post-date {
    display: block;
}

.pagination {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.current {
    border: 2px solid #757575;
    border-radius: 10px;
}

.page-numbers {
    color: #757575;
    padding: 10px;
    font-size: 1rem;
    font-weight: 700;
}