/* ============================================
   AUSSTELLUNG.HTML — Page-specific styles
   ============================================ */

.ausstellung-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .ausstellung-intro-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 5rem;
    }
}

.ausstellung-intro-text {
    max-width: 560px;
}

.ausstellung-intro-text h2 {
    margin-bottom: 1.5rem;
}

.ausstellung-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.ausstellung-intro-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.ausstellung-intro-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--depth-rest);
    border: 1px solid var(--border);
    max-width: 680px;
    justify-self: center;
    width: 100%;
}

.ausstellung-intro-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-highlight);
    pointer-events: none;
    z-index: 2;
}

.ausstellung-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05) saturate(0.95);
}

/* ========== INFO CARDS ========== */
.ausstellung-info {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ausstellung-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 760px) {
    .ausstellung-info-grid { grid-template-columns: repeat(3, 1fr); }
}

.ausstellung-info-card {
    position: relative;
    padding: clamp(1.75rem, 2.5vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(to bottom,
                    rgba(240, 232, 217, 0.04),
                    rgba(240, 232, 217, 0.01));
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(240, 232, 217, 0.06),
                0 3px 12px var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    isolation: isolate;
    transition: transform 0.5s var(--ease),
                border-color 0.5s var(--ease),
                box-shadow 0.5s var(--ease);
}

.ausstellung-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-highlight);
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.ausstellung-info-card > * {
    position: relative;
    z-index: 1;
}

.ausstellung-info-card .label { margin-bottom: 0; }

.ausstellung-info-card h3 {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.01em;
}

.ausstellung-info-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.ausstellung-info-card .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.ausstellung-info-note {
    font-size: 13.5px !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

@media (hover: hover) and (min-width: 1025px) {
    .ausstellung-info-card:hover {
        transform: translateY(-3px);
        border-color: var(--accent-25);
        box-shadow: inset 0 1px 0 rgba(240, 232, 217, 0.1),
                    0 12px 32px var(--shadow-md);
    }
}

/* Hours block reused across pages */
.ausstellung-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ausstellung-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 14px;
}

.ausstellung-hours-label {
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.ausstellung-hours-val {
    color: var(--text);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.ausstellung-hours-val--muted {
    color: var(--text-muted);
    font-weight: 400;
}

.ausstellung-address {
    font-style: normal;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-body);
}

.ausstellung-address strong {
    color: var(--text);
    font-weight: 500;
}
