@charset "utf-8";
/* CSS Document */

       
        /* Wienhorst Container */
        .wienhorstcontainer {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Note Section */
        .catalog-note {
            background: linear-gradient(135deg, #FFE300 0%, #F5B80A 100%);
            padding: 25px 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            border-left: 5px solid #5C3000;
        }
        
        .catalog-note p {
            color: #331A00;
            font-size: 1.1em;
            font-weight: 600;
            line-height: 1.7;
        }
        
        /* Catalog Entries */
        .catalog-entries {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .catalog-entry {
            background: white;
            border: 2px solid #DAD9D6;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .catalog-entry:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            border-color: #6BC9C9;
        }
        
        .catalog-entry-header {
            background: linear-gradient(135deg, #6BC9C9 0%, #006354 100%);
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .catalog-number {
            background: white;
            color: #006354;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1em;
            min-width: 80px;
            text-align: center;
        }
        
        .catalog-title {
            color: white;
            font-size: 1.3em;
            font-weight: 700;
            flex: 1;
        }
        
        .catalog-title em {
            font-style: italic;
        }
        
        .catalog-entry-body {
            padding: 30px;
        }
        
        .catalog-subtitle {
            color: #5C3000;
            font-size: 1.05em;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .catalog-details {
            color: #5C3000;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .catalog-details p {
            margin-bottom: 12px;
        }
        
        .catalog-details em {
            font-style: italic;
        }
        
        .catalog-details strong {
            color: #331A00;
            font-weight: 700;
        }
        
        /* Metadata Section */
        .catalog-metadata {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #F5B80A;
        }
        
        .metadata-item {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        
        .metadata-item:last-child {
            margin-bottom: 0;
        }
        
        .metadata-label {
            color: #331A00;
            font-weight: 700;
        }
        
        /* Collection Holdings */
        .collection-holdings {
            background: linear-gradient(135deg, rgba(107, 201, 201, 0.1) 0%, rgba(0, 99, 84, 0.1) 100%);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border: 2px solid #6BC9C9;
        }
        
        .collection-holdings h3 {
            color: #006354;
            font-size: 1.2em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .collection-holdings h3::before {
            content: "📦";
            font-size: 1.3em;
        }
        
        .collection-holdings ul {
            list-style: none;
            padding: 0;
        }
        
        .collection-holdings li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #5C3000;
        }
        
        .collection-holdings li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #6BC9C9;
            font-size: 1.5em;
            line-height: 1;
        }
        
        /* Includes List */
        .includes-list {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .includes-list h4 {
            color: #331A00;
            font-size: 1.1em;
            margin-bottom: 12px;
        }
        
        .includes-list ul {
            list-style: none;
            padding: 0;
            columns: 2;
            column-gap: 20px;
        }
        
        .includes-list li {
            padding: 5px 0;
            color: #5C3000;
            font-size: 0.95em;
            break-inside: avoid;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .catalog-entry-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .catalog-number {
                min-width: auto;
            }
            
            .catalog-entry-body {
                padding: 20px;
            }
            
            .includes-list ul {
                columns: 1;
            }
        }
