/* FIRST SECTION */
.article-hero {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: auto;
    height: 100vh;
    position: relative;
    background-color: black;
}

.article-title {
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    padding: 8rem 2rem;
    filter: drop-shadow(0 0 4px black);
    gap: 2rem;
    z-index: 5;
    h1 {
        font-weight: 500;
    }
    span {
        font-style: italic;
    }
}

.hero-img {
    position: absolute;
    width: 100%;
    outline: 2px dotted white;
    mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0)); 
    z-index: 1;
    video {
        object-fit: cover;
        height: 100vh;
        width: 100%;
    }
    img{
        object-fit: cover;
        height: 100vh;
        width: 100vw;
    }
}

/* SECOND SECTION */
.article-wrapper {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.article-text {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    line-height: 1.2;
    gap: 2rem;
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;  
    h3, h4 {
        color: black;
        margin-top: 2rem;
    }
    p {
        margin: 0;
    }
    ul {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    li {
        font-size: 20px;
    }
    li::marker {
        color: var(--orange);
    }
    a {
        font-weight: 600;
        text-decoration: none;
        color: var(--orange);
        pointer-events: all;
    }
    a:hover {
        text-decoration: underline;
    }
}

.sp1 {font-style: italic;}
.sp2 {
    font-weight: 600;
    color: var(--orange);
}
.sp3 {
    font-weight: 600;
    font-style: italic;
    color: var(--orange);
}

@media (max-width: 940px) {
    .article-wrapper {
        padding: 2rem 1rem;
    }
    .article-text {
        gap: 1rem;
        li {
            font-size: 18px;
        }
    }
}

@media (max-width: 546px) {
    .article-text {
        h3 {
            margin-top: 1rem;
        }
        li {
            font-size: 16px;
        }
    }
}