/* ================================
   HOH Reflections — Sanctuary Soft
   Gentle, Warm, Contemplative
   ================================ */

/* Wrapper */
.hoh-reflections {
    background: var(--wp--preset--color--accent-4);
    border-radius: 18px;
    padding: var(--wp--preset--spacing--40);
    margin: var(--wp--preset--spacing--40) auto;
    max-width: 900px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    color: var(--wp--preset--color--accent-3);
}

/* Title */
.hoh-reflections-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: var(--wp--preset--spacing--30);
    font-weight: 600;
    color: var(--wp--preset--color--accent-3);
    letter-spacing: 0.5px;
}

/* List */
.hoh-reflections-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wp--preset--spacing--20);
}

/* Reflection Card */
.hoh-reflection-item {
    background: var(--wp--preset--color--accent-5);
    border-radius: 16px;
    padding: var(--wp--preset--spacing--30);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);

    max-width: 600px;
    width: 100%;

    animation: fadeIn 0.4s ease;
}

/* Reflection Title */
.hoh-reflection-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--wp--preset--spacing--20);
    color: var(--wp--preset--color--accent-3);
    text-align: center;
}

/* Content */
.hoh-reflection-content,
.hoh-reflection-content p {
    margin: 0;
    line-height: 1.65;
    font-size: 1rem;
    color: var(--wp--preset--color--accent-3);
    font-style: italic; /* softer, more contemplative */
}

/* Tags */
.hoh-reflection-tags {
    margin-top: var(--wp--preset--spacing--20);
    font-size: 0.85rem;
    opacity: 0.75;
    text-align: center;
}

.hoh-reflection-tags span {
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 12px;
    margin-right: 6px;
}

/* Divider between reflections */
.hoh-reflections-list li + li::before {
    content: "";
    display: block;
    width: 85%;
    margin: 0 auto var(--wp--preset--spacing--30);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Remove original border */
.hoh-reflections-list li + li {
    border-top: none;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================
   Mobile Refinements
   ================================ */

@media (max-width: 600px) {
    .hoh-reflections {
        padding: var(--wp--preset--spacing--30);
    }

    .hoh-reflections-title {
        font-size: 22px;
    }

    .hoh-reflection-title {
        font-size: 18px;
    }
}
