* {
    h2 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        margin-bottom: 1.5rem;
    }

    h3 {
        margin-bottom: 1rem;
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);

        text-align: center;
    }

    h4 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 1rem;

        text-align: center;
    }

    p {
        font-size: clamp(0.9rem, 2vw, 1.05rem);
        line-height: 1.7;
    }

    #o-chamado {
        margin-top: 2rem;
        font-size: 2rem;
        color: #00bfff;
        text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);

        font-weight: 600;
    }
}

audio {
    width: 100%;
    max-width: 500px;
    display: block;
    
    background: rgba(255, 255, 255, 0.133);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    
    accent-color: rgba(255, 255, 255, 0.25);
    color-scheme: dark;
}

video {
    width: 100%;
    max-width: 500px;
    display: block;
    
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0;
    
    accent-color: rgba(255, 255, 255, 0.25);
    color-scheme: dark;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;

    h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 2rem;
        opacity: 0.7;
    }
}

.hero-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.65;
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-section {
    h2, h3 {
        margin-top: 2.5rem;

        text-align: center;
    }
}

.evidence-box,
.entrance-box,
.gnostic-box,
.warning-box,
.quote-box,
.conclusion {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 1.8rem;
    margin: 2rem 0;

    &:hover {
        transform: scale(1.025);
        transition: all 250ms;
    }
}

.quote-box {
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
}
.conclusion {
    text-align: center;
}

.evidence-list {
    list-style: none;
    padding: 0;

    li {
        font-size: clamp(0.95rem, 2vw, 1.05rem);
        margin-bottom: 0.9rem;
        padding-left: 1.8rem;
        position: relative;
        line-height: 1.6;
    }

    li:before {
        content: "✡︎";
        position: absolute;
        left: 0;
        opacity: 0.6;
    }
}

@media(max-width: 600px) {
    .article-section p {
        text-align: center;
    }
}