.bg-texture {
    position: fixed; inset: 0;
    background: url("https://tse2.mm.bing.net/th/id/OIP.CcDLkSAxK89Lj3qdsVIiBgHaJU?rs=1&pid=ImgDetMain&o=7&rm=3") repeat;
    background-size: 400px; z-index: 1; opacity: 0.08;
    filter: grayscale(1) contrast(1.5); pointer-events: none;
}

.latest-card {
    border: 1px solid var(--dim-white);
    padding: 40px;
    margin-bottom: 30px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 2px;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05);
}

.latest-card::before {
    content: "PERSONAL_THOUGHTS";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #050505;
    padding: 0 10px;
    font-size: 0.6rem;
    color: var(--cyber-blue);
    letter-spacing: 2px;
}

.latest-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.post-card {
    border-left: 2px solid var(--dim-white);
    border-right: none;
    border-top: none;
    border-bottom: none;
    padding: 15px 25px;
    margin-bottom: 25px;
    background: transparent;
    transition: 0.3s;
}

.post-card .post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: none;
    font-style: italic;
}

.post-card:hover {
    border-left-color: var(--cyber-blue);
    background: rgba(255, 255, 255, 0.03);
}

.section-divider {
    text-align: right;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--dim-white);
    margin: 50px 0 30px 0;
    border-top: 1px solid var(--dim-white);
    padding-top: 10px;
    text-transform: uppercase;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    background: transparent;
    color: var(--cyber-white);
    border: 1px solid var(--cyber-white);
    padding: 6px 12px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.8rem;
    transition: 0.3s;
}

.read-more:hover {
    background: var(--cyber-white);
    color: #000;
    font-style: normal;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--dim-white);
}

.post-navigation .read-more {
    margin-top: 0;
}

.diary-entry-content {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.diary-entry-content p {
    margin-bottom: 1.8rem;
    text-indent: 1.5rem;
}
