/* Blog Comments Section Styles */

.blog-social-section {
    position: relative;
    margin:  0 auto;
}

.share-heading {
    font-family: 'Saira', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding: 0;
    color: #FFFFFF;
    opacity: 0.3;
    margin: 0;
}

.share-buttons {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 1000px;
    background: #2A2A2A;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.share-button:hover {
    background-color: #3A3A3A;
}

.post-meta {
    margin-top: 25px;
}

.post-categories {
    width: 590px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.6;
}

.comment-section {
    margin-top: 60px;
}

.comment-heading {
    font-family: 'Saira', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.comment-form-container {
    width: 100%;
    height: auto;
    border-radius: 4px;
    padding: 0;
}

.comment-textarea {
    width: 100%;
    height: calc(100% - 50px);
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    resize: none;
    padding: 0;
}

.comment-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.comment-textarea:focus {
    outline: none;
}

.comment-submit-btn {
    align-self: flex-start;
    background-color: #FFFFFF;
    color: #1A1A1A;
    border: none;
    padding: 0;
    font-family: 'Saira', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
    width: 94px;
    position: absolute;
    height: 38px;
    bottom: 70px;
    left: 20px;
}

.comment-submit-btn:hover {
    background-color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-social-section {
        width: 100%;
        padding: 0;
    }
    
    .post-categories {
        width: 100%;
    }
    
    .comment-form-container {
        width: 100%;
    }
    
    .comment-heading {
        font-size: 36px;
    }
}

/* Mobile styles - Based on 375px width design */
@media (max-width: 767px) {
    .blog-social-section {
        margin: 45px 0;
        width: 100%;

    }
    
    .share-heading {
        font-size: 16px;
        line-height: 25px;
        opacity: 0.3;
        margin-bottom: 12px;
        position: relative;
    }
    
    .share-buttons {
        display: flex;
        gap: 10px;
        margin-top: 12px;
    }
    
    .share-button {
        width: 40px;
        height: 40px;
    }
    
    .post-categories {
        font-size: 14px;
        line-height: 130%;
        margin: 25px 0;
        width: 100%;
    }
    
    .comment-section {
        margin-top: 40px;
    }
    
    .comment-heading {
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 20px;
    }
    
    .comment-form-container {
        width: 100%;
        height: 156px;
    }
    
    .comment-submit-btn {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 16px;
        width: 94px;
        height: 38px;
        margin-top: 20px;
    }
}
