/* ====== Single Post Container ====== */
.single-post-container {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background: #fff;
}

@media (max-width: 768px) {
    .single-post-container {
        width: 100%;
        margin: 20px auto;
        padding: 0 15px;
    }
}

/* ====== Post Title ====== */
.single-post-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #222;
}

/* ====== Post Meta ====== */
.single-post-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.single-post-meta svg {
    vertical-align: middle;
    margin-right: 5px;
    fill: #777;
}

.single-post-meta span {
    display: flex;
    align-items: center;
}

/* ====== Post Content ====== */
.single-post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-post-content p {
    margin-bottom: 20px;
}

/* ====== Post Navigation ====== */
.single-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.single-post-nav a {
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.single-post-nav a:hover {
    color: #005177;
    text-decoration: underline;
}

/* ====== Comments Section ====== */
.comments-area {
    margin-top: 50px;
    margin-bottom: 80px;
}

 
.comments-area h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
    main {
        padding-top:10px!important;
        padding-left: 20px!important;
        padding-right: 20px!important;
    }
}

/* Comment Form Container */
.comment-respond {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Labels */
.comment-respond label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px; /* Label নিচে margin */
}

/* Inputs & Textarea */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd; /* হালকা border */
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    background: #fafafa;
}

/* Focus Effect */
.comment-respond input[type="text"]:focus,
.comment-respond input[type="email"]:focus,
.comment-respond input[type="url"]:focus,
.comment-respond textarea:focus {
    border-color: #ff4b7d;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 75, 125, 0.1);
}

/* Post Comment Button */
.comment-respond input[type="submit"] {
    background: #0bb3d9;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.comment-respond input[type="submit"]:hover {
    background: #e13f6c;
}

footer.comment-meta {
    display: block!important;
}

b.fn a {
    text-decoration: none;
    color: #0bb3d9;
}

.comment-metadata {
    margin-top: 5px;
}

.comments-area a, .page-content a {
    color: #000!important;
    text-decoration: none;
}

.comment-body {
    border: none!important;
}
