.blog-post {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 20px 0;
}

.post-meta {
    color: #666;
    font-size: 0.9em;
}

.post-meta span {
    margin: 0 10px;
}

.post-content {
    line-height: 1.8;
    color: #444;
}

.post-content h2 {
    color: #333;
    margin: 40px 0 20px;
    font-size: 1.8em;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content ol {
    margin-left: 2rem;
    padding-left: 1rem;
}

.post-content li {
    margin-bottom: 10px;
}

.conclusion {
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: #f0f0f0;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block;
}

.content-with-image {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-with-image.right {
    flex-direction: row-reverse;
}

.image-container {
    flex: 0 0 45%;
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-caption {
    display: block;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.text-container {
    flex: 1;
    padding-right: 30px;
}

.text-container p {
    margin: 0;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .text-container {
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .content-with-image,
    .content-with-image.right {
        flex-direction: column;
    }

    .image-container {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .content-image {
        margin: 15px auto;
    }
}

.separator {
    margin: 0 5px;
    color: #666;
}



.author-name {
    color: #666;
    font-size: 0.9em;
    font-weight: normal;
    margin: 0 10px;
}

.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9em;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #999;
}

.breadcrumbs a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #007bff;
}

.breadcrumbs li:last-child {
    color: #999;
}

.social-share {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    color: #666;
    font-size: 0.9em;
}

.share-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.email {
    background: #666;
}

@media (max-width: 768px) {
    .social-share {
        .text-center {
            text-align: center;
        }
    }
}

