/* General Styles */
.single-blog-page {
    max-width: 1200px;
    margin: 180px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.blog-banner img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Blog Content */
.blog-content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 20px;
}

.blog-description {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.share-icon {
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: var(--primary);
    color: white;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    border-top: 2px solid #ddd;
    padding-top: 30px;
}

.comment {
    margin-bottom: 20px;
}

.comment-form {
    margin-top: 40px;
}

.comment-form textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.comment-form .submit-comment {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form .submit-comment:hover {
    background-color: var(--accent);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.newsletter h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 20px;
}

.newsletter input {
    padding: 12px;
    width: 300px;
    max-width: 80%;
    margin-right: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.newsletter button {
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

/* Media Queries for Responsiveness */
@media(max-width: 768px) {
    .single-blog-page {
        padding: 15px;
    }

    .blog-banner img {
        height: 300px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-meta {
        font-size: 12px;
    }

    .blog-description {
        font-size: 14px;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-icon {
        margin: 10px 0;
    }

    .comment-form textarea {
        height: 120px;
    }

    .newsletter input {
        width: 100%;
    }

    .newsletter button {
        width: 100%;
        margin-top: 15px;
    }
}

@media(max-width: 480px) {
    .blog-title {
        font-size: 24px;
    }

    .blog-description {
        font-size: 12px;
    }
}