
        /* Hero Section */
        .hero {
            margin-top: 82px;
            min-height: 400px;
            /* Remove the SVG placeholder and let the inline PHP handle the image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            /* Adding a subtle border-bottom to separate the hero from the grid content below */
            border-bottom: 1px solid rgba(198, 168, 103, 0.1);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(38px, 5vw, 60px);
            font-weight: 400;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 2px 15px rgba(0,0,0,0.4);
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            max-width: 650px;
            /* Justification consistent with your other pages */
            text-align: justify;
            text-justify: inter-word;
        }

        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        /* Sidebar */
        .sidebar {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 32px 24px;
            height: fit-content;
            position: sticky;
            top: 110px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .sidebar-section {
            margin-bottom: 32px;
        }

        .sidebar-section:last-child {
            margin-bottom: 0;
        }

        .sidebar-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid #2D5A3D;
        }

        .sidebar-list {
            list-style: none;
        }

        .sidebar-item {
            padding: 10px 0;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #555;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-item:hover {
            color: #2D5A3D;
            padding-left: 8px;
        }

        .sidebar-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #2D5A3D;
            border-radius: 50%;
        }

        .filter-section {
            margin-top: 24px;
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
            display: block;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #555;
            cursor: pointer;
        }

        .filter-checkbox {
            width: 16px;
            height: 16px;
            border: 2px solid #ccc;
            border-radius: 3px;
            cursor: pointer;
        }

        /* Content Area */
        .content-area {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .search-bar {
            margin-bottom: 32px;
        }

        .search-input {
            width: 100%;
            padding: 14px 48px 14px 20px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
            background: #FAFAFA;
        }

        .search-input:focus {
            outline: none;
            border-color: #2D5A3D;
            background: #FFFFFF;
        }

        /* Artifacts Grid */
        .artifacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
            margin-bottom: 40px;
        }

        .artifact-card {
            background: #F8F8F8;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .artifact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-color: #2D5A3D;
        }

        .artifact-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid #E5E5E5;
            overflow: hidden;
        }

        .artifact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .artifact-placeholder {
            font-size: 48px;
            color: #ccc;
        }

        .artifact-info {
            padding: 20px;
        }

        .artifact-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #2D5A3D;
            color: #FFFFFF;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .artifact-name {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #1A241E;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .artifact-details {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
            line-height: 1.7;
        }

        .artifact-detail-row {
            margin-bottom: 6px;
        }

        .detail-label {
            font-weight: 600;
            color: #333;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 40px;
        }

        .page-number {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-number:hover {
            border-color: #2D5A3D;
            color: #2D5A3D;
        }

        .page-number.active {
            background: #2D5A3D;
            color: #FFFFFF;
            border-color: #2D5A3D;
        }

        .page-nav {
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-nav:hover {
            border-color: #2D5A3D;
            color: #2D5A3D;
        }
        
        /* Active sidebar item */
        .sidebar-item.active a,
        .sidebar-item a:hover {
            color: #2D5A3D;
            font-weight: 600;
        }
        
        .sidebar-item a {
            color: #555;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        /* Results count + clear filters */
        .results-count {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .clear-filters {
            color: #2D5A3D;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            padding: 4px 10px;
            border: 1px solid #2D5A3D;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        
        .clear-filters:hover {
            background: #2D5A3D;
            color: #fff;
        }
        
        /* No results */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            font-family: 'DM Sans', sans-serif;
            color: #666;
        }
        
        .no-results a {
            color: #2D5A3D;
            font-weight: 600;
        }
        
        /* Pagination links */
        .pagination a {
            text-decoration: none;
        }
        
        /* Real checkbox styling */
        .filter-checkbox {
            width: 16px;
            height: 16px;
            accent-color: #2D5A3D;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {

            .artifacts-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                min-height: 320px;
                text-align: center;
            }
            .hero-description {
                margin: 0 auto;
                text-align: center;
            }
        }