* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    color: #262626;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.post {
    background-color: white;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.post-date {
    color: #8e8e8e;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.post-title {
    color: #262626;
    font-size: 1rem;
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.post-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image-container {
    display: flex;
    flex-direction: column;
}

.post-images img,
.post-images video {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.image-meta {
    color: #8e8e8e;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

@media (min-width: 768px) {
    .container {
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}
