/* Estilos gerais para a seção do componente */
#section-component .component {
    background-color: #f8f9fa;
    padding: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


#section-component .inner {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#section-component .row {
    margin: 0;
}


/* Estilos para o blog-featured */
.blog-featured {
    padding: 30px;
}

.blog-items {
    margin: 0;
}

.blog-item {
    margin-bottom: 0;
    border-bottom: none;
}

/* Estilos para o conteúdo do item */
.item-content {
    position: relative;
}

.item-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #2c3e50;
}

.item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-title a:hover {
    color: #3498db;
}

/* Estilos para as informações do artigo */
.article-info {
    margin: 25px 0 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 0 4px 4px 0;
}

.article-info-term {
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-info dd {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #5a6c7d;
    display: flex;
    align-items: center;
}

.article-info dd:not(:first-child) {
    margin-top: 5px;
}

.article-info .icon-fw {
    width: 1.2em;
    margin-right: 8px;
    color: #3498db;
    font-size: 1.1em;
}

.article-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info a:hover {
    color: #2980b9;
}

.published time {
    font-weight: 500;
}

/* Estilos para o highlight (conteúdo) */
.highlight {
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.highlight p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 15px;
}

.highlight strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Estilos para o botão de ler mais */
.readmore {
    margin: 0;
}

.readmore a.btn {
    display: inline-flex;
    align-items: center;
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.readmore a.btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.readmore .icon-chevron-right {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.readmore a:hover .icon-chevron-right {
    transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-featured {
        padding: 20px;
    }
    
    .item-title {
        font-size: 1.8rem;
    }
    
    .article-info {
        padding: 15px;
        margin: 20px 0;
    }
    
    .highlight p {
        font-size: 1rem;
    }
    
    #section-component {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .item-title {
        font-size: 1.6rem;
    }
    
    .article-info dd {
        font-size: 0.9rem;
    }
    
    .readmore a.btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

/* Ajustes para Joomla/Bootstrap */
#system-message-container {
    margin: 10px 0;
}

.is-empty {
    display: none;
}