/* News Sidebar Styles */

/* Sidebar */
.single-news-sidebar {
    width: 100%;
    max-width: 480px;
    min-width: 0;
}

.single-news-sidebar__content {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3436;
}

/* Sidebar Widgets */
.single-news-sidebar__widget {
    margin-bottom: 32px;
}

.single-news-sidebar__widget:last-child {
    margin-bottom: 0;
}

.single-news-sidebar__widget-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 20px;
    line-height: 1.2;
}

/* Search Form */
.single-news-sidebar__search-form {
    width: 100%;
}

.single-news-sidebar__search-wrapper {
    display: flex;
    gap: 0;
    width: 100%;
}

.single-news-sidebar__search-input {
    flex: 1;
    padding: 12px 16px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    color: #2d3436;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.single-news-sidebar__search-input:focus {
    border-color: #43b02a;
}

.single-news-sidebar__search-input::placeholder {
    color: #9ca3af;
}

.single-news-sidebar__search-button {
    padding: 12px 24px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #f59e0b;
    border: 1px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.single-news-sidebar__search-button:hover {
    background: #d97706;
    border-color: #d97706;
}

/* Categories List */
.single-news-sidebar__categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-news-sidebar__categories-item {
    margin: 0;
    padding: 0;
}

.single-news-sidebar__categories-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    color: #2d3436;
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-news-sidebar__categories-link:hover {
    color: #43b02a;
}

.single-news-sidebar__categories-link i {
    font-size: 10px;
    color: #9ca3af;
}

.single-news-sidebar__categories-count {
    margin-left: auto;
    color: #6b7280;
    font-weight: 400;
}

/* Comments List */
.single-news-sidebar__comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-news-sidebar__comments-item {
    margin: 0;
    padding: 0;
}

.single-news-sidebar__comments-item--empty {
    padding: 8px 0;
    color: #6b7280;
    font-size: 14px;
}

.single-news-sidebar__comments-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    color: #2d3436;
    line-height: 1.5;
}

.single-news-sidebar__comments-link i {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 4px;
    flex-shrink: 0;
}

.single-news-sidebar__comments-post-link {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-news-sidebar__comments-post-link:hover {
    color: #43b02a;
}

/* Tags Cloud */
.single-news-sidebar__tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-news-sidebar__tags-empty {
    margin: 0;
    padding: 8px 0;
    color: #6b7280;
    font-size: 14px;
}

.single-news-sidebar__tag {
    display: inline-block;
    padding: 6px 12px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    color: #2d3436;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.single-news-sidebar__tag:hover {
    background: #43b02a;
    border-color: #43b02a;
    color: #ffffff;
}

@media (max-width: 991px) {
    .single-news-sidebar {
        max-width: 100%;
    }
}

