section.title {
    padding: 50px 0 30px 0;
    display: flex;
    gap: 20px;
}

section.title>*{
    flex: calc(50% - 10px);
    flex-grow: 0;
    flex-shrink: 0;
}

section.title .details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: start;
}

section.title .details .share {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

section.title .details .share .icon {
    background-color: var(--share-icon);
    border-radius: 100%;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.title .details h1 {
    margin: 0;
}

section.title .details .meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

section.title .details .meta .category {
    display: block;
    background-color: var(--category);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--accent-text);
    font-size: 16px;
    font-weight: 400;
}

section.title .details .meta .date {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

section.title .details .meta .comments {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

section.title .thumbnail img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    border-radius: 15px;
}

section.title .thumbnail .img {
    width: 100%;
    height: 325px;
    background-color: var(--overlay);
    border-radius: 15px;
}

section.content {
    padding: 0 0 90px 0;
}

section.content p {
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
}

section.posts {
    padding: 0 0 90px 0;
}

section.posts ul.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
}

section.posts ul.container li.blog {
    flex: calc((100% - 20px) / 2);
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.posts ul.container li.blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

section.posts ul.container li.blog .img {
    width: 100%;
    height: 300px;
    background-color: var(--overlay);
    border-radius: 15px;
}

section.posts ul.container li.blog h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 37.5px;
}

section.posts ul.container li.blog .details {
    display: flex;
    gap: 15px;
    align-items: center;
}

section.posts ul.container li.blog .details .category {
    display: block;
    background-color: var(--category);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--accent-text);
    font-size: 16px;
    font-weight: 400;
}

section.posts ul.container li.blog .details .date {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

section.posts ul.container li.blog .details .comments {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

section.comments {
    padding: 0 0 90px 0;
}

section.comments h2 {
    
}

@media screen and (max-width: 600px) {
    section.title {
        flex-direction: column-reverse;
    }

    section.posts ul.container li.blog {
        flex: 100%;
    }
}