/**
 * 이용안내 페이지 스타일
 * ESG 레퍼런스 기반 - 깔끔한 정보 중심 디자인
 */

.guide-container {
    width: 100%;
    background-color: #fff;
}

/* ===== 히어로 섹션 ===== */
.guide-hero {
    background-color: #fafafa;
    padding: 100px 0 60px;
    text-align: left;
}

.guide-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-hero-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f3c;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.guide-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.guide-hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    max-width: 600px;
}

/* ===== 히어로 이미지 섹션 ===== */
.guide-image-section {
    padding: 0;
    margin-top: 60px;
}

.guide-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ===== 미션/비전 테이블 섹션 ===== */
.guide-mission-section {
    padding: 80px 0;
    background-color: #fff;
}

.guide-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #111;
    letter-spacing: -0.02em;
}

/* 정보 테이블 */
.guide-info-table {
    border-top: 1px solid #e5e5e5;
}

.guide-info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid #e5e5e5;
}

.guide-info-label {
    padding: 1.5rem;
    background-color: #fafafa;
    font-weight: 600;
    color: #333;
    font-size: 1.125rem;
    display: flex;
    align-items: flex-start;
}

.guide-info-content {
    padding: 1.5rem;
}

.guide-info-content p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
}

.guide-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-info-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

.guide-info-list li:last-child {
    margin-bottom: 0;
}

.guide-info-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #1a1f3c;
    font-weight: bold;
}

/* 정보 그리드 (3열) */
.guide-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-info-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f3c;
    margin-bottom: 0.75rem;
}

.guide-info-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-info-item li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.375rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.guide-info-item li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #999;
}

/* ===== 특징 카드 섹션 ===== */
.guide-features-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.guide-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guide-feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.guide-feature-card:hover {
    border-color: #1a1f3c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guide-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: #1a1f3c;
}

.guide-feature-icon svg {
    width: 100%;
    height: 100%;
}

.guide-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.75rem;
}

.guide-feature-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ===== CTA 섹션 ===== */
.guide-cta-section {
    padding: 80px 0;
    background-color: #1a1f3c;
    text-align: center;
}

.guide-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.guide-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
}

.guide-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #17e8c4;
    color: #1a1f3c;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.guide-cta-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.guide-cta-button svg {
    transition: transform 0.3s ease;
}

.guide-cta-button:hover svg {
    transform: translateX(4px);
}

/* ===== 반응형 디자인 ===== */

/* 태블릿 가로 (1024px ~ 1199px) */
@media (max-width: 1199px) {
    .guide-hero-title {
        font-size: 2.5rem;
    }
    
    .guide-info-grid {
        gap: 1.5rem;
    }
    
    .guide-features-grid {
        gap: 1.25rem;
    }
    
    .guide-feature-card {
        padding: 1.5rem;
    }
}

/* 태블릿 세로 (768px ~ 1023px) */
@media (max-width: 1023px) {
    .guide-hero {
        padding: 80px 0 60px;
    }
    
    .guide-hero-title {
        font-size: 2.25rem;
    }
    
    .guide-hero-desc {
        font-size: 1rem;
    }
    
    .guide-mission-section,
    .guide-features-section,
    .guide-cta-section {
        padding: 60px 0;
    }
    
    .guide-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .guide-info-row {
        grid-template-columns: 140px 1fr;
    }
    
    .guide-info-label {
        font-size: 1.0625rem;
    }
    
    .guide-info-content p {
        font-size: 1.0625rem;
    }
    
    .guide-info-list li {
        font-size: 1.0625rem;
    }
    
    .guide-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-cta-title {
        font-size: 1.75rem;
    }
}

/* 모바일 중형 (480px ~ 767px) */
@media (max-width: 767px) {
    .guide-hero {
        padding: 70px 0 50px;
    }
    
    .guide-hero-inner,
    .guide-section-inner,
    .guide-image-wrapper {
        padding: 0 1.25rem;
    }
    
    .guide-hero-label {
        font-size: 0.875rem;
    }
    
    .guide-hero-title {
        font-size: 1.875rem;
    }
    
    .guide-hero-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .guide-hero-image {
        max-height: 300px;
        border-radius: 6px;
    }
    
    .guide-mission-section,
    .guide-features-section,
    .guide-cta-section {
        padding: 50px 0;
    }
    
    .guide-section-title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
    
    .guide-info-row {
        grid-template-columns: 1fr;
    }
    
    .guide-info-label {
        padding: 1rem 1.25rem;
        background-color: #f5f5f5;
        font-size: 1rem;
    }
    
    .guide-info-content {
        padding: 1rem 1.25rem;
    }
    
    .guide-info-content p {
        font-size: 1rem;
    }
    
    .guide-info-list li {
        font-size: 1rem;
    }
    
    .guide-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .guide-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guide-feature-card {
        padding: 1.25rem;
    }
    
    .guide-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .guide-feature-title {
        font-size: 1rem;
    }
    
    .guide-feature-desc {
        font-size: 0.875rem;
    }
    
    .guide-cta-title {
        font-size: 1.5rem;
    }
    
    .guide-cta-desc {
        font-size: 1rem;
    }
    
    .guide-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* 모바일 소형 (320px ~ 479px) */
@media (max-width: 479px) {
    .guide-hero {
        padding: 60px 0 40px;
    }
    
    .guide-hero-inner,
    .guide-section-inner,
    .guide-image-wrapper {
        padding: 0 1rem;
    }
    
    .guide-hero-title {
        font-size: 1.625rem;
    }
    
    .guide-hero-desc {
        font-size: 0.875rem;
    }
    
    .guide-hero-image {
        max-height: 250px;
    }
    
    .guide-mission-section,
    .guide-features-section,
    .guide-cta-section {
        padding: 40px 0;
    }
    
    .guide-section-title {
        font-size: 1.25rem;
    }
    
    .guide-info-label {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .guide-info-content {
        padding: 0.875rem 1rem;
    }
    
    .guide-info-content p,
    .guide-info-list li,
    .guide-info-item li {
        font-size: 0.9375rem;
    }
    
    .guide-info-item strong {
        font-size: 0.9375rem;
    }
    
    .guide-cta-title {
        font-size: 1.375rem;
    }
    
    .guide-cta-desc {
        font-size: 0.9375rem;
    }
}

/* ===== 시간표 섹션 ===== */
.guide-schedule-section {
    padding: 80px 0;
    background-color: #fff;
}

/* 연락처 정보 섹션 */
.guide-contact-section {
    margin-bottom: 3rem;
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.guide-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.guide-contact-column {
    display: flex;
    flex-direction: column;
}

.guide-contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1rem 0;
}

.guide-contact-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.5rem 0;
}

.guide-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-contact-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.guide-contact-category {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.guide-contact-number {
    font-size: 1rem;
    color: #1a1f3c;
    font-weight: 600;
}

/* 설명 섹션 */
.guide-schedule-description {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #444;
}

.guide-schedule-description p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guide-schedule-description p:last-child {
    margin-bottom: 0;
}

.guide-schedule-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* 시간표 테이블 래퍼 */
.guide-schedule-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.guide-schedule-table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

/* 시간표 테이블 */
.guide-schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.guide-schedule-table thead {
    background: #1a1f3c;
    color: #fff;
    border-bottom: 2px solid #15203a;
}

.guide-schedule-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.guide-schedule-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.15s ease;
}

.guide-schedule-table tbody tr:hover {
    background-color: #fafafa;
}

.guide-schedule-table tbody tr:last-child {
    border-bottom: none;
}

.guide-schedule-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* 컬럼별 스타일 */
.guide-col-period {
    width: 15%;
}

.guide-col-subject {
    width: 20%;
}

.guide-col-time {
    width: 35%;
}

.guide-col-remarks {
    width: 30%;
}

.guide-period-cell {
    font-weight: 600;
    color: #1a1f3c;
}

.guide-subject-cell {
    font-weight: 500;
    color: #333;
}

.guide-time-cell {
    color: #666;
}

.guide-remarks-cell {
    color: #666;
    font-size: 0.9rem;
}

/* 쉬는 시간 행 */
.guide-break-row {
    background-color: #fafafa;
}

.guide-break-row .guide-subject-cell {
    color: #666;
}

/* 퇴실 행 */
.guide-dismissal-row {
    background-color: #f0f2f5;
    border-top: 2px solid #1a1f3c;
}

.guide-dismissal-row .guide-period-cell {
    font-weight: 700;
    color: #1a1f3c;
    font-size: 1rem;
}

/* 시간표 섹션 반응형 디자인 */
@media (max-width: 1023px) {
    .guide-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-schedule-table {
        font-size: 0.9rem;
        min-width: 600px;
    }
}

@media (max-width: 767px) {
    .guide-schedule-section {
        padding: 50px 0;
    }
    
    .guide-contact-section {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .guide-contact-title {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .guide-contact-note {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .guide-contact-list {
        gap: 1rem;
    }
    
    .guide-contact-category,
    .guide-contact-number {
        font-size: 0.9rem;
    }
    
    .guide-schedule-description {
        margin-bottom: 1.5rem;
    }
    
    .guide-schedule-description p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.875rem;
    }
    
    .guide-schedule-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .guide-schedule-table-wrapper {
        margin-top: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .guide-schedule-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    .guide-schedule-table th {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .guide-schedule-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .guide-col-period {
        width: 18%;
        min-width: 60px;
    }
    
    .guide-col-subject {
        width: 22%;
        min-width: 80px;
    }
    
    .guide-col-time {
        width: 35%;
        min-width: 120px;
    }
    
    .guide-col-remarks {
        width: 25%;
        min-width: 100px;
    }
    
    .guide-period-cell {
        font-size: 0.875rem;
    }
    
    .guide-subject-cell {
        font-size: 0.85rem;
    }
    
    .guide-time-cell {
        font-size: 0.8rem;
    }
    
    .guide-remarks-cell {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 479px) {
    .guide-schedule-section {
        padding: 40px 0;
    }
    
    .guide-contact-section {
        padding: 1.25rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .guide-contact-grid {
        gap: 1.5rem;
    }
    
    .guide-contact-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .guide-contact-note {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .guide-contact-list {
        gap: 0.875rem;
    }
    
    .guide-contact-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .guide-contact-category,
    .guide-contact-number {
        font-size: 0.85rem;
    }
    
    .guide-schedule-description {
        margin-bottom: 1.25rem;
    }
    
    .guide-schedule-description p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .guide-schedule-note {
        font-size: 0.8rem;
        margin-top: 0.625rem;
    }
    
    .guide-schedule-table-wrapper {
        margin-top: 1.25rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
    
    .guide-schedule-table {
        font-size: 0.8rem;
        min-width: 550px;
    }
    
    .guide-schedule-table th {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .guide-schedule-table td {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .guide-col-period {
        width: 15%;
        min-width: 50px;
    }
    
    .guide-col-subject {
        width: 20%;
        min-width: 70px;
    }
    
    .guide-col-time {
        width: 35%;
        min-width: 110px;
    }
    
    .guide-col-remarks {
        width: 30%;
        min-width: 90px;
    }
    
    .guide-period-cell {
        font-size: 0.8rem;
    }
    
    .guide-subject-cell {
        font-size: 0.8rem;
    }
    
    .guide-time-cell {
        font-size: 0.75rem;
    }
    
    .guide-remarks-cell {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .guide-dismissal-row .guide-period-cell {
        font-size: 0.9rem;
    }
}
