.exhibition-page {
    padding: 3rem 0 5rem;
}

.exhibition-page .wrap {
    width: 90%;
    max-width: 69.791666rem;
    margin: 0 auto;
}

.exhibition-head {
    margin-bottom: 2rem;
}

.exhibition-head h1 {
    font-size: 2.2rem;
    color: #222;
    margin: 0 0 0.5rem;
}

.exhibition-head p,
.exhibition-head-lead {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.exhibition-intro {
    margin: 0 0 2.25rem;
    max-width: 52rem;
}

.exhibition-intro h2 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}

.exhibition-intro-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.exhibition-intro-body p {
    margin: 0 0 0.85em;
}

.exhibition-intro-body p:last-child {
    margin-bottom: 0;
}

.exhibition-intro-body img {
    max-width: 100%;
    height: auto;
}

.exhibition-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exhibition-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    cursor: pointer;
}

.exhibition-card:hover {
    background-color: #fdd000;
    border-color: #fdd000;
    transform: translateX(8px);
    box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.exhibition-card .date-box {
    text-align: center;
    min-width: 70px;
    padding-right: 20px;
    margin-right: 4px;
    border-right: 1px solid #eee;
    padding-top: 4px;
}

.exhibition-card .date-box .day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.exhibition-card .date-box .month {
    display: none;
}

.exhibition-card .info {
    flex: 1;
    min-width: 0;
}

.exhibition-card .info h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

.exhibition-card .info .info-line {
    margin: 0 0 6px;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.55;
    white-space: normal;
    word-break: break-word;
}

.exhibition-card .info .info-line .lab {
    color: #888;
    font-weight: 600;
    margin-right: 4px;
}

.exhibition-card .cta {
    flex-shrink: 0;
    align-self: center;
    padding: 10px 18px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    font-size: 0.8rem;
}

.exhibition-card:hover .cta {
    background: #111;
}

.exhibition-empty,
.exhibition-error {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}

.exhibition-summary {
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #fafafa;
    border-left: 3px solid #fdd000;
}

.exhibition-summary h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}

.exhibition-summary .summary-meta {
    margin: 0;
    color: #777;
    font-size: 0.82rem;
    line-height: 1.55;
}

#ExhibitionPopup .verify-row canvas {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 42px;
}

#ExhibitionPopup select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fcfcfc;
}

#ExhibitionPopup .exh-en-time-input {
    cursor: pointer;
    background: #fcfcfc;
}

.exh-en-picker {
    position: fixed;
    z-index: 10050;
    width: 300px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    box-sizing: border-box;
}

.exh-en-picker.time-only .exh-en-picker-head,
.exh-en-picker.time-only .exh-en-week,
.exh-en-picker.time-only .exh-en-days,
.exh-en-picker.time-only .exh-en-btn-today {
    display: none;
}

.exh-en-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.exh-en-picker-head .exh-en-title {
    font-size: 14px;
    font-weight: 700;
}

.exh-en-picker-head .exh-en-nav {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #333;
}

.exh-en-week,
.exh-en-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.exh-en-week {
    margin-bottom: 4px;
    color: #888;
    font-size: 12px;
}

.exh-en-days button {
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}

.exh-en-days button:hover {
    background: #f5f5f5;
}

.exh-en-days button.is-other {
    color: #bbb;
}

.exh-en-days button.is-selected {
    background: #fdd000;
    color: #222;
    font-weight: 700;
}

.exh-en-days button.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 1px #fdd000;
}

.exh-en-time-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.exh-en-time-row label {
    margin: 0;
    font-size: 13px;
    color: #555;
    min-width: 36px;
}

.exh-en-time-row select {
    width: 72px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fcfcfc;
}

.exh-en-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

.exh-en-actions button {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #333;
}

.exh-en-actions .exh-en-btn-ok {
    background: #fdd000;
    border-color: #fdd000;
    font-weight: 700;
}

@media (max-width: 768px) {
    .exhibition-card {
        flex-wrap: wrap;
        padding: 16px;
        gap: 12px;
    }

    .exhibition-card:hover {
        transform: translateY(-4px);
    }

    .exhibition-card .cta {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .exhibition-head h1 {
        font-size: 1.5rem;
    }

    .exh-en-picker {
        width: min(300px, calc(100vw - 24px));
    }
}
