/* =========================
   DIARY & PRIVATE MEMORY
========================= */
.diary-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg,
            var(--white-color),
            var(--light-gray));
}

/* Layout */
.diary-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Text */
.diary-text h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.diary-intro {
    max-width: 480px;
    margin-bottom: 1.8rem;
    color: var(--dark-gray);
}

/* Points */
.diary-points {
    list-style: none;
}

.diary-points li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
}

.diary-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

/* Visual */
.diary-visual {
    flex-shrink: 0;
}

.diary-paper {
    width: 280px;
    height: 360px;
    background-color: var(--white-color);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
}

.diary-paper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

.diary-paper span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .diary-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }

    .diary-paper {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

}