.article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Virsraksts */
.article-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #222;
}


/* Autors */
.article-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}


/* Metadati */
.article-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.article-meta-top .meta-link {
    color: #3c6575;
    text-decoration: none;
}

.article-meta-top .meta-link:hover {
    text-decoration: underline;
}

.meta-readcount {
    color: #666;
}


.meta-link {
    color: #3c6575;
    text-decoration: none;
}

.meta-link:hover {
    text-decoration: underline;
}

/* Intro AI */
.article-intro-ai {
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: #444;
    margin: 0 0 20px 0;
}


/* Lead */
.article-lead {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 20px;
}


/* Titulbilde */
.article-hybrid {
    position: relative;
    width: 100%;
    height: 194px; /* fiksēts rāmis */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Blur fons */
.article-hybrid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.8);
    transform: scale(1.2);
}

/* Centrālā bilde */
.article-hybrid-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: auto;            /* saglabā proporciju */
    max-height: none;        /* ļauj augstumu >194px */
    width: auto;             /* dabīgais platums */
    max-width: 760px;        /* slejas limits */

    /* upscale mazajām bildēm */
    min-width: 532px;        /* 70% slejas platuma */

    object-fit: cover;       /* vertikāls crop */
    object-position: center;

    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Long lead */
.article-long-lead {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 25px;
}

/* Body */
.article-body {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px 25px;
}

.article-body li {
    margin-bottom: 6px;
}
