/* -------------------------
 * list.php 전용 스타일
 * ------------------------- */

/* Pretendard Web Font (index.php에서 이동) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* * (⭐ 수정) list.php의 최상위 컨테이너에 배경 적용
 * (style.css의 .mobile-container { background-color: #fff; } 를 덮어씁니다) 
 */
.mobile-container {
    background-image: url('../images/index_mid_v8.png');
    background-size: cover;
    background-position: center;
    background-color: #f0f2f5; /* 이미지 로드 실패 시 배경색 */
}
.back-to-list-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;
}
/* 1. 헤더 (기존 style.css 재사용) */
.header-banner {
      position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    background-image: none;
    background-color: transparent;
    height: auto;
    min-height: 220px;
    flex-direction: column;
}

/* (⭐ 신규) 헤더 로고 */
.header-logo {
    flex-shrink: 0; display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; padding-top:20px;
}
.header-logo img {
    width: 170px; /* 로고 크기 (조절 필요시 변경) */
    height: auto;     
}

#wh {/* filter: grayscale(1) invert(1); */}

/* (⭐ 신규) 헤더 중앙 타이틀 블록 */
.header-title-block {
    flex-grow: 1;width: 100%;
    text-align: left;
    color: white;
    padding: 0 20px; /* 좌우 로고/버튼과의 여백 */
    
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0 0 0; /* 로고와의 상단 간격 */
   /*  background-color: rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(2px);
}
.header-title-block h2 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
    /* text-shadow: 0 1px 3px rgba(0,0,0,0.4); */
    color: #fff; /* 글자색 흰색 강제 */
}
.header-title-block p {
    font-size: 1em;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: #fff;
}
.header-title-block .header-divider {
    width: 100%;
  height: 1px; /* 선 두께 */
  background: /* linear-gradient(to right, #ffffff, #a04bff) */ #fff;
  border-radius: 2px; /* 양 끝을 살짝 둥글게 */
  
}


/* (⭐ 수정) 로그아웃 버튼 */
.logout-btn {
    position: relative; /* absolute에서 변경 */
    top: 0;
    right: 0;
   
  
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
   
    flex-shrink: 0; /* 버튼이 찌그러지지 않게 함 */
}
.logout-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.logout-btn img {
    width: 24px; /* 아이콘 이미지 크기 */
    height: 24px;
}
.logout-btn svg {
    display: none; /* 기존 SVG 숨기기 */
}

/* -------------------------
 * 2. 메인 래퍼 (배경 이미지 적용)
 * ------------------------- */
.main-wrapper {
    /* ⭐ (수정) 배경 이미지를 부모(.mobile-container)로 옮겼으므로 제거 */
    background-image: none;
    
    padding-top: 1px; /* 겹침 방지 */
    padding-bottom: 1px; /* 겹침 방지 */
}


/* -------------------------
 * 3. 행사 정보
 * ------------------------- */
.event-info {
    padding: 0px 24px 20px;
    background-color: transparent; /* ⭐ 배경 투명 */
  
}
.event-info p {
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: #333; /* 텍스트 색상 (배경에 따라 흰색(#fff)으로 변경 필요할 수 있음) */
    margin: 10px 0;
    font-weight: 500;
}
.event-info p svg {
    margin-right: 12px;
    color: #7B31FB; /* 아이콘 색상 (수정됨) */
    flex-shrink: 0;
}

.event-info-warp {background-color: #fff; padding:8px 20px; border-radius:10px;}

/* -------------------------
 * 4. 메인 콘텐츠 (그리드)
 * ------------------------- */
.list-content {
    padding: 24px;
    background-color: transparent; /* ⭐ 배경 투명 */
}

.lang-toggle {
    float: right;
    font-size: 0.8em;
    font-weight: 500;
    color: #aaa; 
}
.lang-toggle span {
      color: #5B3A89; cursor: pointer;
    padding: 4px 18px;
    border: 1px solid #5B3A89; background:#fff;
}
.lang-toggle span.active {
    background:#5a08cd;
	color:#fff;
    font-weight: 700;
}

.guide-title {
    font-size: 1em;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0px;
    clear: both;
}

.gu-to {display: flex;
    justify-content: space-between;
    align-items: center;padding-bottom: 20px;
}

/* 아이콘 그리드 */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.grid-item {
    padding: 15px 10px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 0.6em;
    font-weight: 500;
    line-height: 1.4;
    
    /* (그리드 깨짐 방지 1) */
    min-width: 0;
    /* (그리드 깨짐 방지 2) */
    word-break: break-word;
    
    aspect-ratio: 1 / 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    
    /* (추가) 버튼 배경색을 흰색으로 */
    background-color: #ffffff;
}
.grid-item:hover {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.grid-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #5a3e9b;
}
.grid-icon img { /* (추가) SVG 대신 img 태그 사용 시 */
    width: 100%;
    height: 100%;
}

/* -------------------------
 * 5. 하단 배너
 * ------------------------- */
.bottom-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 그리드 */
    gap: 12px;
}
.banner-link {
    display: flex;
    flex-direction: column; /* 아이콘과 텍스트를 세로로 정렬 */
    
    padding: 20px;
    /* background-color: #f8f9fa; (삭제) */
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    aspect-ratio: 1 / 0.8;
    
    /* (그리드 깨짐 방지 1) */
    min-width: 0;
    /* (그리드 깨짐 방지 2) */
    word-break: break-word;
    
    /* (추가) 버튼 배경색을 흰색으로 */
    background-color: #ffffff;
    border: 1px solid #e9ecef;
}
.banner-link:hover {
    background-color: #f8f9fa;
}

.banner-text {
    width: 100%;
    flex-grow: 1; /* (추가) 텍스트가 남은 세로 공간을 모두 차지 (아이콘을 아래로 밀어냄) */
}
.banner-text h3 {
    font-size: 0.7em;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-align: left; /* 텍스트 왼쪽 정렬 */
    margin-bottom: 10px; /* 아이콘과의 간격 */
    
    display: flex; /* 화살표 옆에 정렬 */
    align-items: center;
}
.banner-text h3 svg { /* 화살표 아이콘 스타일 */
    width: 18px;
    height: 18px;
    margin-left: 5px;
    color: #333;
}

.banner-icon {
    width: 60px; /* 아이콘 크기 키움 */
    height: 60px;
    color: #5a3e9b;
    align-self: flex-end; /* (유지) 아이콘을 오른쪽 아래로 정렬 */
}
.banner-icon img { /* (추가) SVG 대신 img 태그 사용 시 */
  /*   width: 100%;
    height: 100%; */ width: 50px;
}

/* -------------------------
 * 6. (추가) 그리드 아이템 텍스트 높이 고정
 * ------------------------- */
.grid-item span {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}