@import url("watch-sections.css");

.posts-page {
    padding: 20px;
}

.posts-page .watch-page-head {
    margin-bottom: 0;
}

.post-card {
    display: grid;
    gap: 14px;
}

.post-card p {
    margin: 0;
}

.post-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
}

.post-head h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 300;
    color: #fff;
}

.post-content {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 15px;
}

.post-content p + p {
    margin-top: 12px;
}

.post-footer {
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 720px) {
    .posts-page {
        padding: 10px;
    }

    .post-head {
        flex-direction: column;
        gap: 10px;
    }

    .post-head h3 {
        font-size: 18px;
    }
}
