/* Custom styles for CV site - Updated 2026-02-18 v3 */

.content-section {
    padding: 2rem 0 !important;
}

#content-pane .content-wrapper {
    background: #ffffff !important;
    padding: 3rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    text-align: left !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

#content-pane .content-wrapper h2 {
    color: #2c3e50 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.2rem !important;
    border-bottom: 2px solid #3498db !important;
    padding-bottom: 0.5rem !important;
}

#content-pane .content-wrapper p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #34495e !important;
    margin-bottom: 1.5rem !important;
    text-align: justify !important;
}

#content-pane .content-wrapper ul {
    margin-left: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

#content-pane .content-wrapper ul li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
    color: #34495e !important;
}

#content-pane .content-wrapper ul li a {
    color: #3498db !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.3s ease !important;
}

#content-pane .content-wrapper ul li a:hover {
    color: #2980b9 !important;
    border-bottom-color: #2980b9 !important;
    text-decoration: none !important;
}

/* Make content use more horizontal space */
@media (min-width: 1200px) {
    .content-wrapper {
        padding: 3.5rem 4rem;
        font-size: 1.15rem;
    }
}

@media (min-width: 1400px) {
    .content-wrapper {
        padding: 4rem 5rem;
        font-size: 1.2rem;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        margin: 0 1rem;
        padding: 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper p {
        font-size: 1rem;
        text-align: left;
    }
}