/* =========================================================
   URP - ENTRADAS Y CONTENIDO
   ========================================================= */

#content article.hentry {
    box-sizing: border-box;
    margin: 0 0 28px;
    padding: 30px;
    background: var(--urp-card);
    border: 1px solid var(--urp-border);
    border-radius: var(--urp-radius);
    box-shadow: var(--urp-shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

#content article.hentry:hover {
    transform: translateY(-2px);
    border-color: #d2dbe4;
    box-shadow: var(--urp-shadow-hover);
}

.entry-title {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.entry-title,
.entry-title a {
    color: #18212c;
    font-weight: 700;
    text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
    color: var(--urp-blue);
}

.entry-header .entry-meta {
    margin: 0 0 24px;
    color: var(--urp-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.entry-header .entry-meta a,
.entry-meta a {
    color: var(--urp-blue);
    font-weight: 600;
    text-decoration: none;
}

.entry-header .entry-meta a:hover,
.entry-meta a:hover {
    color: var(--urp-blue-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-summary img.wp-post-image,
#content img.wp-post-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 24px;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
}

.entry-summary {
    color: #303945;
    font-size: 1rem;
    line-height: 1.72;
}

.entry-summary p {
    margin-bottom: 1em;
}

.entry-content a,
.entry-summary a,
.entry-meta a {
    color: var(--urp-blue);
}

.entry-content a:hover,
.entry-summary a:hover,
.entry-meta a:hover {
    color: var(--urp-blue-light);
}

.entry-summary .more-link {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-top: 8px;
    padding: 9px 16px;
    color: #fff;
    background: var(--urp-blue);
    border: 1px solid var(--urp-blue);
    border-radius: 5px;
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.entry-summary .more-link:hover,
.entry-summary .more-link:focus {
    color: #fff;
    background: var(--urp-blue-dark);
    border-color: var(--urp-blue-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

.more-link .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

article.hentry > footer.entry-meta {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #e6eaee;
    color: var(--urp-muted);
    font-size: 0.82rem;
}
