.blog-single-section {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.blog-single {
    background: #fff;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-single-section {
    margin-top: 0;
    padding-top: 0;
}

.blog-single-section .blog-body .wrapper .articles .article-section .single-blog-image {
    width: 100%;
    height: 400px;
}


.blog-single-section .blog-body .wrapper .articles .article-section .meta-section {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.blog-single-section .blog-body .wrapper .articles .article-section .meta-section .author-name {
    font-size: 14px;
    background-color: #0a4c36;
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 500;
}

.blog-single-section .blog-body .wrapper .articles .article-section .meta-section .author-name span {
    font-weight: 400;
}

.blog-single-section .blog-body .wrapper .articles .article-section .meta-section .date {
    font-size: 14px;
    color: #0a4c36;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.blog-single-section .blog-body .wrapper .articles .article-section .meta-section .date span {
    font-weight: 400;
}

.blog-single-section .blog-body .wrapper .articles .article-section h2 {
    font-size: 32px;
    color: #eb5a07;
    margin-top: 30px;
    font-weight: 600;
}

.blog-single-section .blog-body .wrapper .articles .article-section .single-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


.blog-single-section .blog-body .wrapper .articles .article-section .description p {
    font-size: 16px;
    color: black;
    margin-top: 30px;
    font-weight: 400;
    text-align: justify;
}

.blog-single-section .blog-body .wrapper .articles .article-section .description{
    padding-bottom: 50px;
    border-bottom: 1px solid #5baf93;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section {
    max-width: 600px;
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-header {
    padding: 40px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-meta {
    font-size: 0.95rem;
    opacity: 0.9;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-content {
    padding: 50px;
    font-size: 1.1rem;
    color: #444;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-content p {
    margin-bottom: 1.5rem;
}


.blog-single-section .blog-body .wrapper .articles .article-section .form-section .comments-title {
    font-size: 1.8rem;
    margin: 40px 0 30px;
    color: #0a4c36;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .comment-form {
    background: #ecfbef;
    padding: 35px;
    border-radius: 10px;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .form-group {
    margin-bottom: 20px;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #389274;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section input:focus,
textarea:focus {
    outline: none;
    border-color: #0a4c36;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section textarea {
    min-height: 150px;
    resize: vertical;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .form-row {
    display: flex;
    gap: 20px;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .form-row .form-group {
    flex: 1;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .checkbox-group input[type="checkbox"] {
    width: auto;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .submit-btn {
    background: #eb5a07;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .submit-btn:hover {
    background: #0a4c36;
}

@media (max-width: 768px) {

    .blog-single-section .blog-body .wrapper .articles .article-section .form-section .post-header h1 {
        font-size: 2rem;
    }

    .blog-single-section .blog-body .wrapper .articles .article-section .form-section .form-row {
        flex-direction: column;
    }
}

.blog-single-section .blog-body .wrapper .articles .article-section .form-section .checkbox-group .save-label {
    margin-bottom: 0px;
}


@media (max-width: 1340px) {
    .blog-single-section .blog-single .articles .article-section {
        padding: 0px 20px;
    }
}

@media (max-width: 992px) {
    .blog-single-section {
        grid-template-columns: 2fr 1fr;
        gap: 25px;
    }

    .blog-sidebar {
        margin: 0px 20px;
    }
}

@media (max-width: 768px) {
    .blog-single-section {
        display: flex;
        flex-direction: column;
    }

    .blog-sidebar {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .blog-single-section .blog-section {
        grid-template-columns: 1fr;
    }
}