.pfmx-fl-note-archive {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    font-family: inherit;
    color: var(--pfmx-fl-text, #171717);
    padding: 30px;
    background-color: var(--pfmx-fl-surface, #FAF8F5);
    border: 1px solid var(--pfmx-fl-border, rgba(23,23,23,0.12));
    border-radius: var(--pfmx-fl-radius, 18px);
    backdrop-filter: blur(var(--pfmx-fl-blur, 8px));
    -webkit-backdrop-filter: blur(var(--pfmx-fl-blur, 8px));
}

.pfmx-fl-note-archive .pfmx-fl-note-image-wrap {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: var(--pfmx-fl-image-radius, 50%);
    overflow: hidden;
    background-color: rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pfmx-fl-note-archive .pfmx-fl-note-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.pfmx-fl-note-archive .pfmx-fl-note-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.05) 10px, rgba(0,0,0,0.05) 20px);
}

.pfmx-fl-note-archive .pfmx-fl-note-info {
    flex-grow: 1;
}

.pfmx-fl-note-archive .pfmx-fl-note-title {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 600;
    color: var(--pfmx-fl-accent, #9A6A35);
}

.pfmx-fl-note-archive .pfmx-fl-note-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pfmx-fl-muted, #706B65);
}

@media (max-width: 768px) {
    .pfmx-fl-note-archive {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}
