/* Estilos para a página de colunistas */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #c00;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: justify;
}

.page-description p {
    margin-bottom: 15px;
}

/* Estilos para os cards de colunistas */
.columnist-card-full {
    display: flex;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.columnist-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.columnist-image {
    flex: 0 0 150px;
    margin-right: 20px;
}

.columnist-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c00;
}

.columnist-details {
    flex: 1;
}

.columnist-name-full {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.columnist-name-full a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.columnist-name-full a:hover {
    color: #c00;
}

.columnist-specialty {
    display: inline-block;
    background-color: #f5f5f5;
    color: #c00;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.columnist-bio {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.columnist-stats {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.columnist-view-btn {
    display: inline-block;
    background-color: #c00;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.columnist-view-btn:hover {
    background-color: #900;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .columnist-card-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .columnist-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .columnist-details {
        width: 100%;
    }
}
