/* css/lista_posts.css */

.post-title a {
    text-decoration: none;
    color: #212529;
    font-weight: 700;
}

.post-title a:hover {
    color: #0085A1;
    /* Color primario del tema */
    text-decoration: underline;
}

.filter-tag {
    color: #0085A1;
}

.post-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.post-excerpt p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    color: #333;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list a {
    text-decoration: none;
    color: #555;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.sidebar-list a:hover {
    background-color: #f8f9fa;
    color: #0085A1;
}

.sidebar-list a.active {
    background-color: #0085A1;
    color: white;
}

/* LPT Card Styles */
.lpt-inline-date {
    font-size: 0.85em;
    color: #6c757d;
    margin-right: 0.5rem;
    font-weight: normal;
    display: inline;
}

.post-title {
    line-height: 1.3;
}

/* Tag Buttons Style */
.lpt-tag-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #495057;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lpt-tag-button:hover {
    background-color: #f8f9fa;
    color: #0085A1;
    border-color: #0085A1;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sidebar Specific */
.sidebar-section .lpt-tag-button {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    text-align: left;
}

/* Override for Active State */
.lpt-tag-button.lpt-tag-button-active {
    background-color: #0085A1;
    color: #fff;
    border-color: #0085A1;
}