/* ========================================
   검사 시 주의사항 페이지
   ======================================== */

.pc-section {
    background: #f5f3ef;
    padding: 64px 0 96px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.pc-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 60px;
    background: #f5f3ef;
    border-radius: 30px 30px 0 0;
}
.pc-section .container { position: relative; z-index: 1; }

/* ===== 카드 그리드 (2x2) ===== */
.pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.pc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.pc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.pc-card-img {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
    background: #f0ede5;
}
.pc-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pc-card-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9c0ad;
    font-size: 2.5rem;
}

.pc-card-body {
    padding: 24px 28px 28px;
}
.pc-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}
.pc-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pc-card-list li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* 빈 상태 */
.pc-empty {
    text-align: center;
    padding: 80px 0;
    color: #999;
}
.pc-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

/* ===== 예약 버튼 ===== */
.pc-footer {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}
.pc-reserve-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 38px;
    border: 1.5px solid #c8102e;
    color: #c8102e;
    background: #fff;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.pc-reserve-btn:hover {
    background: #c8102e;
    color: #fff;
}

/* ===== 반응형 ===== */
@media (max-width: 767px) {
    .pc-grid { grid-template-columns: 1fr; gap: 18px; }
    .pc-card-body { padding: 18px 20px 22px; }
}
