.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
}

.post {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 50%;
    margin: 0 auto 1rem;
    box-sizing: border-box;
}

@media (max-width: 650px) {
    .post {
        width: 100%;
    }
}

.post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(45, 213, 7, 0.2);
}

.post-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.post-video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 400px;
    aspect-ratio: 16/9;
}

@media (max-width: 650px) {
    .post-video {
        max-height: 300px;
        aspect-ratio: 16/9;
    }
}
