@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --crss-primary: #9a2109;
    --crss-accent: #ff2000;
    --crss-bg: #ffffff;
    --crss-text: #333333;
    --crss-muted: #666666;
    --crss-border: #f0f0f0;
    --crss-shadow: rgba(0, 0, 0, 0.05);
    --crss-hover-shadow: rgb(122 26 26 / 10%);
}

.crss-container {
    font-family: 'Inter', sans-serif;
    color: var(--crss-text);
}

.crss-item {
    border-bottom: 1px solid var(--crss-border);
    transition: all 0.3s ease;
}

.crss-item:last-child {
    border-bottom: none;
}

.crss-item:hover {
    padding-left: 5px;
    background-color: var(--crss-hover-shadow);
    border-radius: 4px;
}

.crss-item-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.crss-item-title a {
    color: var(--crss-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.crss-item-title a:hover {
    color: var(--crss-accent);
}

.crss-item-meta {
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--crss-muted);
}

.crss-item-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Scrollbar for Widget Areas if needed */
.widget_crss_widget .crss-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.widget_crss_widget .crss-container::-webkit-scrollbar {
    width: 6px;
}

.widget_crss_widget .crss-container::-webkit-scrollbar-track {
    background: transparent;
}

.widget_crss_widget .crss-container::-webkit-scrollbar-thumb {
    background: var(--crss-border);
    border-radius: 10px;
}

.widget_crss_widget .crss-container::-webkit-scrollbar-thumb:hover {
    background: var(--crss-primary);
}