/* filepath: /Users/mkubis/github_repos/scrss/static/css/styles.css */
/* Custom styles that complement Bootstrap */

.summary {
    white-space: normal;
    line-height: 1.8;
    font-size: 1.05rem;
}

.summary h3, .summary h4 {
    color: #2c3e50;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.summary h4:first-child {
    margin-top: 0;
}

.summary ul, .summary ol {
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.summary li {
    margin-bottom: 0.25rem;
}

.summary p {
    margin-bottom: 1rem;
}

/* Custom jumbotron since Bootstrap 5 removed it */
.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Enhanced article cards */
.articles article.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-left: 4px solid #007bff;
}

.articles article.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.articles article h3 a {
    color: #2c3e50;
    transition: color 0.2s;
}

.articles article h3 a:hover {
    color: #007bff;
}

/* Navbar adjustments */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summary {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    main.container-fluid {
        margin-top: 70px;
    }
}