/* -------------------------
 * guest_list.php 전용 스타일
 * ------------------------- */

/* 1. 게스트 2x2 그리드 (list_style.css의 3x3 그리드 덮어쓰기) */
.guest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 그리드 */
    gap: 12px;
    margin-bottom: 12px;
}

/* 2. 게스트 전용 그리드 아이템 디자인 */
.guest-grid .grid-item {
    background-color: #ffffff; /* 흰색 배경 */
    border-radius: 12px; width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column; /* 세로 배열 */
    justify-content: space-between; /* 위/아래 공간 분배 */
    align-items: center; /* 텍스트, 아이콘 왼쪽 정렬 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* 그림자 */
    height: 150px; /* 고정 높이 */
    text-decoration: none; /* 링크 밑줄 제거 */
    color: #333; /* 기본 텍스트 색상 */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* 호버 효과 */
}



.guest-grid .grid-item span {
      font-size: 1.8em;
    font-weight: 700;
    color: #333;
        display: flex;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.guest-grid .grid-item .grid-icon {
    width: 50px; /* 아이콘 컨테이너 크기 */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* (⭐ 수정) 아이콘 이미지를 직접 사용하므로 배경색/보더는 제거 */
    /* background-color: #e0e0e0; */
    /* border-radius: 50%; */
    /* margin-bottom: 10px; */
}

.guest-grid .grid-item .grid-icon img {
    width: 100%; /* 아이콘 이미지 크기 */
    height: 100%;
    object-fit: contain; /* 비율 유지 */
}

/* 3. 하단 '돌아가기' 버튼 */
.guest-back-btn {
    display: block;
    width: 100%;
    background-color: #7B31FB;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 20px; /* 카드와의 간격 */
    transition: background-color 0.2s ease;
}
.guest-back-btn:hover {
    background-color: #5a3e9b;
}