section.single__post {
    color: var(--dark-blue-100);
    overflow: hidden;
    margin-top: -40px;
}

.single__post-thumbnail {
    display: block;
    width: calc(100% + 200px);
    margin-left: -100px;
    aspect-ratio: 12/5;
    height: auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.single__post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single__post-title {
    margin: 30px 0;
    text-align: center;
}

.single__post-title h2 {
    font-size: 44px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 30px;
}

.single__post-text {
    padding: 0 60px;
    margin-bottom: 30px;
}

.single__post-text ul,
.single__post-text ol {
    margin-bottom: 30px;
    list-style: initial;
    list-style-position: inside;
}

.single__post-text p {
    margin-bottom: 30px;
}

.single__post-text h1,
.single__post-text h2,
.single__post-text h3,
.single__post-text h4,
.single__post-text h5,
.single__post-text h6 {
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
}

.single__post-social {
    border-bottom: 1px var(--dark-blue-40) solid;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.single__post-social p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.single__post-social ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Tags */
.single__post-tags {
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single__post-tags a {
    display: table;
    padding: 2px 15px;
    border: 2px var(--dark-blue-100) solid;
    border-radius: 30px;
    font-size: 14px;
}


/* Comentários */
section.comments {
    margin: 70px 0;
    color: var(--dark-blue-100);
}

section.comments .container {
    padding-bottom: 60px;
    border-bottom: 1px var(--dark-blue-40) solid;
}

section.comments h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 15px;
}

section.comments .comments__intro {
    margin-bottom: 60px;
}

section.comments .comment-respond {
    background: var(--dark-blue-100);
    border-radius: 30px;
    padding: 30px;
    color: #fff;
}


section.comments .comments__list {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 25px;
    max-height: 600px;
    overflow-y: auto;
}

section.comments .comments__list h3 {
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 15px;
}

section.comments .comments__list p {
    padding: 15px;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 15px;
}

section.comments .comments__list h2 {
    font-size: 24px;
}

section.comments .comments__list p strong {
    display: block;
    margin-bottom: 5px;
}

section.comments .comment-reply-title,
section.comments .logged-in-as,
section.comments .comment-notes {
    display: none;
}

section.comments form p:not(:last-child) {
    margin-bottom: 15px;
}

section.comments input[type="text"],
section.comments input[type="email"],
section.comments textarea {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    color: var(--dark-blue-100);
}

section.comments label {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

section.comments input[type="submit"] {
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    padding: 15px;
    border: 0;
    background: var(--dark-blue-100);
    cursor: pointer;
}

section.comments .comment-form-age,
section.comments .comment-form-privacy,
section.comments .comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: center;
}

section.comments .comment-form-age label,
section.comments .comment-form-privacy label,
section.comments .comment-form-cookies-consent label {
    margin: 0;
} 


section.comments .comments__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Relacionados */
section.related {
    margin: 70px 0;
    color: var(--dark-blue-100);
}

section.related .related__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.related .related__list img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/11;
    object-fit: cover;
}

section.related .related__list h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    line-height: 1.3;
}

section.related .related__date {
    margin: 20px 0;
}

section.related .related__button {
    display: table;
    background: var(--dark-blue-100);
    padding: 10px 30px;
    color: #fff;
    border-radius: 30px;
}


@media all and (max-width:768px) {
    section.single__post .container,
    section.comments .container,
    section.related .container {
        max-width: 90%;
    }
    
    .single__post-title h2,
    section.comments h2 {
        font-size: 24px;
    }

    .single__post-text {
        padding: 0;
    }

    section.comments .comments__blocks,
    section.related .related__list {
        grid-template-columns: repeat(1, 1fr);
    }

    section.comments .comments__intro {
        margin-bottom: 30px;
    }
}