/**
 * styles/article-slideshow.css
 */

/* Article slideshow */
    .article-slideshow {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        background: rgba(0,0,0,0.35);
        border: 1px solid rgba(0,210,255,0.2);
        border-radius: 1rem;
        padding: 1.75rem 1.5rem 2rem;
        min-height: 200px;
    }
    .article-slide { display: none; text-align: center; }
    .article-slide.active { display: block; }
    .article-slide-image {
        margin: 0 auto 1rem auto;
        width: 100%;
        max-width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 0.6rem;
        background: linear-gradient(135deg, rgba(70, 20, 120, 0.65), rgba(0, 210, 255, 0.18));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .article-slide-image img {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .article-slide-placeholder {
        color: var(--apald-cyan);
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-align: center;
        padding: 1rem;
    }
    .article-slide-placeholder span {
        display: block;
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
    }
    .article-slide h3 {
        color: var(--apald-cyan, #00d2ff);
        margin: 0 0 0.6rem 0;
        font-size: 1.2rem;
    }
    .article-slide h3 a {
        color: inherit;
        text-decoration: none;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .article-slide h3 a:hover {
        text-decoration: underline;
    }
    .article-slide p {
        color: #ccc;
        line-height: 1.55;
        margin: 0 0 1rem 0;
        font-size: 0.98rem;
    }
    .slideshow-dots { text-align: center; margin-top: 1rem; }
    .slideshow-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.3);
        margin: 0 4px;
        cursor: pointer;
        padding: 0;
    }
    .slideshow-dots button.active { background: var(--apald-cyan, #00d2ff); }
