/* wisdom/public/assets/css/view.css */

/* Huvudcontainer för artikeln */
/* wisdom/public/assets/css/view.css */

.article-body {
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 800px;
    
    /* Typografi - Reader Friendly Optimization */
    font-family: 'Lora', serif;
    font-size: 19px;           /* Ökad från 1.1rem */
    line-height: 1.65;         /* Ökad från 1.5 för bättre läsflyt */
    color: #2c3e50;            /* Mjukare kontrast än #333 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tajtare avstånd mellan stycken */
.article-body p {
    margin-bottom: 0.9rem;
}

/* Rubriker inne i texten */
.article-body h2, 
.article-body h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    color: #111;
}

/* Listor inne i texten */
.article-body ul, 
.article-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Citatblock */
.article-body blockquote {
    border-left: 4px solid #d4a017;
    margin: 1.5rem 0;
    padding-left: 1rem;
    font-style: italic;
    color: #555;
}

/* Fixa bilder så de är responsiva */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Video-container (16:9 Aspect Ratio) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}