/* Article */
.post {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.content {
    text-align: left;
    box-shadow: none;
}

.content p {
    margin-bottom: 20px;
}

.content iframe {
    max-width: 100%;
    margin: 20px 0;
    display: block;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 4px;
}

.content a {
    color: #8b5e34;
    text-decoration: underline;
}

.content a:hover {
    color: #6b4423;
}

.post > p:last-of-type {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Comments Section */
.comments-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    margin-bottom: 10px;
}

.comment-author {
    color: #8b5e34;
    font-weight: bold;
}

.comment-date {
    color: #999;
    font-size: 0.85rem;
    margin-left: 10px;
}

.comment-content {
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .post,
    .comments-section {
        padding: 25px 20px;
    }

    .post h1 {
        font-size: 1.5rem;
    }

    .content {
        padding: 30px 0;
    }

    .content iframe {
        height: 250px;
    }

    .comment-header {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .comment-date {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .post h1 {
        font-size: 1.35rem;
    }

    .comments-section h2 {
        font-size: 1.25rem;
    }

    .content iframe {
        height: 200px;
    }
}
