/* Visual Structure Improvements */

/* Reduce section spacing for expertise page */
body section {
    margin-bottom: 2rem;
}

/* Improve paragraph readability - allow centering in text-center containers */
.text-center p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

p {
    max-width: 65ch;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section dividers */
.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

/* Dark mode section divider */
.dark .section-divider {
    border-top-color: #374151;
}

/* Improve list spacing */
ul li, ol li {
    margin-bottom: 0.5rem;
}

/* Card spacing improvements */
.max-w-full.bg-white {
    margin-bottom: 2rem;
}
