.no-comments {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between icon and text */
    padding: 12px 16px;
    background-color: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 8px;
    font-style: italic;
    color: #555;
    list-style: none;
}

.no-comments .icon {
    font-size: 1.2em;
}

.no-comments:hover {
    background-color: #f1f1f1;
    border-color: #bbb;
    cursor: pointer;
}

.required-star {
    font-size: 0.5rem;
    vertical-align: super;
    margin-left: 2px;
}

.inputIcon {
    color: #053c61;
}

.form-control:focus {
    border-color: var(--finris-secondary);
    box-shadow: 0 0 0 0.1rem rgba(3, 39, 63, 0.2) !important;
}

/*  Comments Section Styles */
.comment-thread {
    max-width: 800px;
    margin: auto;
}

/* Main comment */
.comment-item {
    padding: 20px 0;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Content */
.content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .date {
    font-size: 0.8rem;
    color: #888;
}

.content .text {
    margin: 6px 0 10px;
    color: #444;
    word-break: break-word;
}

/* Actions */
.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Reply */
.reply-item {
    margin-left: 64px;
    margin-top: 14px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-left: 3px solid #053c61;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Badge */
.badge.approved {
    background: #e6f4ea;
    color: #1e7e34;
    border-radius: 999px;
    font-weight: 500;
    padding: 4px 10px;
    font-size: 0.75rem;
}

/* Buttons */
.btn-link {
    padding: 0;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Mobile: width <= 767px */
@media (max-width: 767px) {
    .blog-details__meta {
        display: block;
    }
}


/* Fix subscription section on mobile */
@media (max-width: 768px) {
    .newsletter-two__btn {
        position: unset !important;
    }
}
