/* 博客目录页-section-styles.css */

.section-container {
    margin-top: 2rem;
    max-width: 100%;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.section-list {
    list-style-type: none;
    padding: 0;
}

.section-item {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

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

.section-link {
    display: block;
    padding: 1rem 0.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 1.125rem;
}

.section-link:hover {
    background-color: #f7fafc;
}