.post {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--light-bg);
}

.post__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    background: var(--light-bg);
    animation: fadeIn 0.3s ease;
}

.post__header {
    margin: 0 0 20px;
    animation: fadeIn 0.3s ease 0.1s both;
}

.post__header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 20px;
}

.post__meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease 0.2s both;
}

.post__meta span {
    margin-right: 15px;
}

.post__meta a {
    color: var(--accent);
    text-decoration: none;
}

.post__meta a:hover,
.post__meta a:focus {
    text-decoration: underline;
}

.post__body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
    animation: fadeIn 0.3s ease 0.3s both;
}

.post__body h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 20px;
}

.post__body p {
    margin: 0 0 20px;
}

.post__body a {
    color: var(--accent);
    text-decoration: none;
}

.post__body a:hover,
.post__body a:focus {
    text-decoration: underline;
}

.post__share {
    margin-bottom: 40px;
    animation: fadeIn 0.3s ease 0.4s both;
}

.post__share-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
}

.post__share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post__share-button {
    padding: 10px 20px;
    text-align: center;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.post__share-button:hover,
.post__share-button:focus {
    transform: scale(1.1);
    background: #008a8a;
}

.post__comments {
    margin-bottom: 40px;
    animation: fadeIn 0.3s ease 0.5s both;
}

.post__comments-toggle {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.post__comments-content {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

.post__related {
    animation: fadeIn 0.3s ease 0.6s both;
}

.post__related-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
}

.post__related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post__related-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post__related-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.post__related-item-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.post__related-item-title a {
    color: var(--text);
    text-decoration: none;
}

.post__related-item-title a:hover,
.post__related-item-title a:focus {
    color: var(--accent);
}

.post__related-item-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .post__content {
        padding: 10px 10px 20px;
    }
    .post__header-image {
        height: 200px;
    }
    .post__title {
        font-size: 30px;
    }
    .post__body {
        font-size: 16px;
    }
    .post__share-buttons {
        flex-direction: column;
    }
    .post__comments-content {
        padding: 10px;
    }
    .post__related-grid {
        grid-template-columns: 1fr;
    }
}