/* Vintage Card Container */


.vintage-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    max-width: 700px;
}

/* Header Row */
.vintage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vintage-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.vintage-header h2 {
    color: red !important;
}


/* Quality Badge */
.vintage-badge {
    background: #4a7;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Metadata Row */
.vintage-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Notes Section */
.vintage-notes h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.vintage-notes p {
    white-space: pre-line;
    line-height: 1.5;
}