/* =========================
      BLOG LAYOUT
========================= */

.layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

/* =========================
        SIDEBAR
========================= */

.sidebar {
    width: 220px;
    text-align: center;
}

.sidebar img {
    width: 200px;
    border: 1px solid #6d3b72;
    margin-bottom: 15px;
}

/* tags estilo tumblr */
.tags a {
    display: inline-block;
    margin: 4px;
    padding: 2px 6px;

    font-size: 0.8rem;
    color: #d6d6d6;

    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);

    transition: 0.2s ease;
}

.tags a:hover {
    background: rgba(255, 209, 220, 0.15);
    border-color: #FFD1DC;

    box-shadow: 0 0 10px rgba(255, 209, 220, 0.25);
}

/* =========================
        POSTS
========================= */

.posts {
    flex: 1;
    text-align: left;
}

.posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* cada post */
.posts li{
    background:#85cddb;

    border:3px solid white;
    outline:3px solid #8a78ff;

    padding:15px;
    margin-bottom:20px;

    box-shadow:
        0 0 10px #8a78ff,
        0 0 20px rgba(138,120,255,.3);

    transition:.2s ease;
}

/* hover tumblr suave */
.posts li:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.04);
    border-color: rgba(255, 209, 220, 0.3);

    box-shadow:
        0 0 10px rgba(140, 90, 255, 0.15),
        0 0 20px rgba(255, 209, 220, 0.08);
}

/* fecha */
.date{
    display:block;

    font-size:1.1rem;
    color:#5c3cfd;

    margin-bottom:8px;
}

/* link del post */
.posts a{
    font-size:1.5rem;
    color:black;
    text-decoration:none;
}

.posts a:hover{
    color:#5c3cfd;
}

/* tags dentro del post */
.post-tags {
    margin-top: 6px;
}

.post-tags{
    margin-top:10px;
}

/* hover glow suave tumblr */
.post-tags a:hover {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* =========================
      MICRO DETAIL
========================= */

/* estilo “diario viejo” */
.posts li::before {
    content: "✦";
    margin-right: 6px;
    opacity: 0.4;
}

/* efecto general de suavidad */
.posts li, .tags a {
    will-change: transform;
}

