/* Article Layout */

.article-container {
    position: relative;
    flex: 1;
    padding-top: 7% !important;
    max-width: 1000px;
    margin: 20px auto;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Article Category */
.category {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.text-dark {
    color: #000;
}

/* Article Title */
.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

/* Metadata */
.meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Article Image */
.article-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Accessibility Controls */
.accessibility-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.accessibility-controls button {
    background-color: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}

.accessibility-controls button:hover {
    background-color: #e0e0e0;
}

.accessibility-controls button:focus {
    outline: 2px solid #999;
}

/* Article Content */
.content {
    font-size: 16px;
    line-height: 1.6;
}

/* Drop Cap Style */
.content p:first-of-type::first-letter {
    font-family: "Domine", serif;
    font-size: 4rem;
    font-weight: bold;
    float: left;
    margin-right: 10px;
    line-height: 1;
    color: #df0000;
}


/* Caption */
.image-caption {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .image-caption {
        color: #555;
    }

    .title {
        font-size: 48px;
    }
}

.author-card {
    width: 280px;
    background: #111;
    border-radius: 20px;
    color: #fff;
    padding: 2.5rem 1.5rem 2rem;
    position: relative;
    text-align: center;
}

.author-card .star {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #ffbf00;
}

.author-card .avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #111;
    margin: 0 auto 1rem;
    display: block;
}

.author-card h5 {
    margin-bottom: .25rem;
}

.author-card p.location {
    margin-bottom: 1rem;
    color: #ccc;
}

.author-card .social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 .3rem;
    transition: .2s;
}

.author-card .social a:hover {
    background: #fff;
    color: #000;
}

.avatar.bw {
    filter: grayscale(50%);
}

#authorDescricao {
    margin: 2%;
    border: 1px solid #2d2b2b;
    border-radius: 12px;
    padding: 4%;
}