.post-content {
    padding: 4rem 0;
}

.post-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #718096;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    color: #3182ce;
    text-decoration: none;
}

.post-title {
    font-size: 2.8rem;
    color: #1A365D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #4A5568;
    font-size: 1rem;
}

.post-featured-image-container {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26,54,93,0.12);
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2d3748;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.9rem;
    color: #1A365D;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2C5282;
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.75rem;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.post-tags h3 {
    font-size: 1.2rem;
    color: #1A365D;
    margin-bottom: 1rem;
}

.post-tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.post-tags a {
    display: inline-block;
    background: rgba(26, 54, 93, 0.08);
    color: #1A365D;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #1A365D;
    color: white;
}

.carousel-nav {
    display: none;
}

.share-buttons {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-buttons h3 {
    color: #1A365D;
    margin-bottom: 1rem;
}

.share-buttons a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-right: 1rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.share-buttons a:hover {
    opacity: 0.9;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-whatsapp {
    background-color: #25D366;
}

.post-info h3 {
    font-size: 1rem;
    color: #1A365D;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.post-info time {
    font-size: 0.8rem;
    color: #718096;
}

@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .post-content {
        padding: 2rem 0;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-grid {
        padding: 0 1rem;
    }

    .share-buttons a {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
}
