/* Garante que o cálculo de largura inclua padding e bordas */
* {
    box-sizing: border-box;
}

#Container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
    width: 100%; /* Força o container a usar toda a largura da coluna */
}

.btx-entry {
    background-color: #ffffff !important;
    border-radius: 12px;
    border-left: 5px solid #0056b3;
    padding: 25px !important;
    margin-bottom: 5px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    
    /* ESTA É A CHAVE PARA O TAMANHO IGUAL: */
    width: 100% !important; 
    display: block; 
    clear: both;
}

.btx-entry:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #0073e6;
}

.btx-entry-inner {
    width: 100%;
}

.btx-entry-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin: 0 0 12px 0 !important;
    color: #2c3e50;
    display: block;
}

.btx-entry-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.author-list {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    display: block;
    line-height: 1.5;
}

.author-label {
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btx-entry-excerpt {
    display: inline-block;
    font-size: 0.85rem !important;
    color: #0056b3 !important;
    background: #eef2f7;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 15px;
    word-break: break-all; /* Evita que links gigantes quebrem o layout */
    transition: background 0.2s;
}

.btx-entry-meta {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    justify-content: space-between; /* Empurra a data para o canto direito */
    align-items: center;
    width: 100%;
}

.btx-entry-author {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95a5a6;
}

.btx-entry-date {
    background: #2c3e50;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}



