body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fff;
    color: #333;
}
* {
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    /* background: #f9f9f9;
    padding: 20px 0; */
    /* position: sticky; */
    /* top: 0; */
    z-index: 1000; /* ✅ 다른 요소 위로 올라오게 */
    background: #f9f9f9; /* ✅ 배경색 지정 안 하면 스크롤시 투명해질 수 있음 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* ✅ 살짝 그림자 효과 */
    padding: 20px 0;
}

.logo-img {
    /* height: 40px;
    object-fit: contain; */
    
    display: block;
    height: 40px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    gap: 20px;
}

.site-nav a {
    color: #333;
    margin-left: 20px;
    text-decoration: none;
}

.program-links {
    background: #f8f8f8;
    padding: 6px 0; /* ✅ 높이 더 얇게 */
    border-bottom: 1px solid #ddd; /* ✅ 흐릿한 경계선 추가 */
}

.program-links-container {
    display: flex;
    justify-content: flex-end; /* ✅ 우측 정렬 */
    gap: 8px; /* ✅ 버튼 간격 조금 좁게 */
    flex-wrap: wrap;
}

.program-button {
    background: #ffffff;
    border: 1px solid #333;
    color: #333;
    padding: 4px 8px; /* ✅ 버튼 더 작게 */
    border-radius: 15px;
    font-size: 11px; /* ✅ 폰트 더 작게 */
    text-decoration: none;
    transition: background 0.2s;
}

.program-button:hover {
    background: #e6f0ff;
}



.main-content {
    padding: 0px 0px;
    text-align: center;
}

.hero {
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
    margin-bottom: 10px; /* ✅ 각 hero 섹션 사이에 10px 간격 */
}

.hero-main {
    position: relative;
    /* background: url('/images/main_bg.png') repeat;
    background-size: contain;
    background-position: center; */
    padding: 0px 0px 0px 0px; /* 하단 여백 주기 */
    /* background: #ededed; */
    height: 920px;
     background: url('/images/store_bg_new.png') center center/cover no-repeat;
    /* background: linear-gradient(135deg, #c6ebff, #ffffff); */
    /* background: linear-gradient(90deg, #d7c1a0, #f5f0e6); */
    text-align: center;
    color: #000;
    
    /* text-shadow: 0 1px 3px rgba(0,0,0,0.5); */
}
.highlight-web {
    margin-top: 1rem;
    background-color: #f0f8ff;
    color: #1a73e8;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.05rem;
    text-align: center;
}
.hero-videos {
    margin: 20px 0;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
}

.video-box {
    max-width: 100%;
}

.video-box iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-box p {
    margin-top: 10px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}


/* ✅ 무료 체험 안내 배너 스타일 */
.free-trial-banner {
    background: rgba(74, 144, 226, 0.5); /* 파란색 반투명 */
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px; /* 아래 요소랑 살짝 간격 */
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    
    text-shadow: none;
}
.coffee-message {
    margin-top: 20px;
    font-size: 20px;
    color: #000; /* 필요시 색상 조정 */
    font-weight: 400;
    line-height: 1.5;
}

.coffee-crop {
    width: 400px; /* ✅ 원하는 가로폭 */
    height: 40%; /* ❌ 이건 안돼. → px 단위로 써야 함 */
    height: 140px; /* ✅ 이미지 높이의 20% 정도로 지정 (직접 계산) */
    overflow: hidden; /* ✅ 초과되는 부분 숨기기 */
    margin: 0 auto;
}

.coffee-image {
    width: 100%;
    height: auto;
    display: block;
}


.hero-main .subtext {
    font-size: 14px;
    color: #000; /* ✅ 메인은 완전 흰색 */
    margin-top: 10px;
    line-height: 1.5;
}
.hero-manager .subtext {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    line-height: 1.5;
}
.hero-manager {
    position: relative;
    color: #333;
    padding: 20px 10px 20px 10px;
    text-align: center;
    /*background: linear-gradient(135deg, #c1e9fe, #ffffff);  ✅ 하늘색 → 흰색 자연스럽게 */
    
    background: #f9f9f9;
}
/* .pc-image-crop {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    margin-top: 0px;
} */

.pc-image {
    width: 350px;
    height: auto;
    display: inline-block; /* ✅ 가운데 정렬되려면 inline-block 필요 */
}
.mobile-image {
    width: 200px;
    height: auto;
    display: inline-block; /* ✅ 가운데 정렬되려면 inline-block 필요 */
}
.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7); /* 선택사항: 텍스트 가독성 */
    display: inline-block;
    padding: 20px 30px;
    border-radius: 12px;
}
.hero-viewer .subtext {
    font-size: 14px;
    color: #666666; /* ✅ 뷰어 쪽은 어두운 회색 */
    margin-top: 10px;
    line-height: 1.5;
}
.hero-viewer {
    position: relative;
    padding: 20px 10px;
    text-align: center;
    
    background: #ededed;
    /* background: linear-gradient(135deg, #ffffff, #ffe0b2); */
}

.hero-download .subtext {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    line-height: 1.5;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    width: 80%;
    max-width: 600px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-pricing {
    padding: 20px 10px;
    text-align: center;
    background: #f9f9f9;
    /* background: linear-gradient(135deg, #f2f2f2, #f9f9f9); */
}

.hero-pricing h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.hero-pricing .subtext {
    font-size: 16px;
    color: #fff; /* ✅ 뷰어 쪽은 어두운 회색 */
    margin-top: 10px;
    line-height: 1.5;
}

.price-plans {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-plan {
    flex: 1 1 calc(50% - 20px);
    max-width: 400px;
    background: #ffffff;
    padding: 30px 20px;
    /* border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    text-align: left;
    box-sizing: border-box;
}

.price-plan h3 {
    font-size: 24px;
    color: #2c7be5;
    margin-bottom: 10px;
}

.hero-pricing .plan-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}




.btn-outline:hover {
    background: #e8f4fc;
}
.btn-outline, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px; /* ✅ 통일 */
    height: 56px; /* ✅ 버튼 높이 고정 */
    min-width: 200px; /* ✅ 버튼 폭 어느정도 통일 (선택) */
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
}

.btn-outline {
    background: white;
    border: 2px solid #4A90E2;
    color: #4A90E2;
}

.btn-primary {
    background: #4A90E2;
    color: #fff;
    border: none;
}

.product-sections {
    display: flex;
    gap: 20px; /* ✅ 두 박스 사이 간격 */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.product-section {
    margin-top: 10px;
    text-align: center;
    background-color: #fff;
    display: inline-block;
    padding: 20px 30px 0px 30px;
}
.product-section-pc {
     background: #ffffff; /*✅ 예시: 아주 연한 파랑색product-section-android*/
    /*background: linear-gradient(135deg, #6fcdff, #c6ebff);*/
    /* border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px; */
}
.manager-logo {
    width: 200px;          /* 필요 시 크기 지정 */
    margin: 10px auto;        /* 위아래 여백 */
    display: block;        /* 줄바꿈 */
}
.product-section-android {
    background: #ffffff; /* ✅ 예시: 아주 연한 파랑색product-section-android*/
    /* background: linear-gradient(135deg, #c6ebff, #ffffff); */
    /* border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px; */
}
.product-section-viewer {
    background: #ffffff;  /*✅ 예시: 아주 연한 파랑색product-section-android*/
    /* background: linear-gradient(135deg, #c6ebff, #ffffff); */
    /* border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px; */
}
.product-section h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-section .subtext {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center; /* ✅ flex 컨테이너 안에서 수직 가운데 */
    margin-top: 10px;
}

/* 4컷 만화 스타일 */
.hero-comic {
    background: #fff9ec; 
}
.comic-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.comic-strip .comic-frame {
    flex: 1 1 calc(50% - 20px);
    max-width: 400px;
    background: #fff9ec; 
}
.comic-strip img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.features {
    margin: 0px 0px 0px 0px ;
}
.feature-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    align-items: stretch;
}
.features-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}
.highlight {
    background-color: #e5eff9;  /* 살구빛 배경 */
    color: #4A90E2;             /* 진한 오렌지 계열 텍스트 */
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

#manager-section,
#link-section,
#viewer-section {
  scroll-margin-top: 120px;
}
.floating-nav {
    position: fixed;
    top: 40%;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .floating-nav a {
    display: block;
    background-color: #4A90E2;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease;
  }
  
  .floating-nav a:hover {
    background-color: #1e74d6;
  }
  

.feature-category {
    flex: 0 1 calc(50% - 10px); /* ✅ 50% - gap 반띵 */
    background: #f7f7f7;
    /* border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
    padding: 20px 20px;
    box-sizing: border-box;
    text-align: left;
}
.feature-categories-sub {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-category-sub {
    display: flex;
    align-items: stretch;
    gap: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    flex-wrap: wrap;

}

/* 썸네일은 고정 */
.feature-thumb {
    flex: 0 0 150px; /* 고정 */
    /* height: 100%; */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-thumb-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* 🔥 여기! feature-content는 flex: 1만 주고 */
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column; /* 기본 수직 흐름 */
}

/* feature-content 안에 h2는 위에 */
.feature-content > h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    margin-top: 0;
}

/* 🔥 feature-item 만 grid로 따로 처리 */
.feature-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 각 item 박스 */
.feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.feature-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    margin-top: 0;
}

.feature-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* ✅ 안에 들어가는 각각의 기능 박스 */
.feature-item {
    margin-bottom: 10px;
}
.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}
.feature-category h2 {
    display: flex;
    align-items: center;
    color:#333;
    /* justify-content: center; 중앙 정렬 */
    gap: 8px;
    font-size: 22px;
}
.feature-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.feature-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: flex-start;
}

.screenshot-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.screenshot-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    object-fit: cover;
}

.screenshot-box img.mobile {
    height: 90px; /* 원하는 높이 */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    object-fit: cover;
}

.screenshot-caption {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Lightbox 전체 레이어 */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Lightbox 안 콘텐츠 */
.lightbox-content {
    position: relative;
    text-align: center;
    max-width: 90%;
    max-height: 90%;
}

/* 닫기 버튼 */
.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* 이미지 */
#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    margin-bottom: 10px;
}

/* 설명 텍스트 */
#lightbox-caption {
    color: white;
    margin-top: 10px;
    font-size: 16px;
}

/* 좌우 화살표 버튼 */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    background: transparent;
    border: none;
    font-size: 48px;
    color: white;
    cursor: pointer;
    transform: translateY(-50%);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }



/* ✅ 기본 틀 */
.service-content {
    padding: 0px 20px;
    /* max-width: 1000px; */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.page-title p {
    font-size: 18px;
    color: #555;
}

/* ✅ 서비스 소개 */

.service-intro {
    background: #f5f5f5; /* 연한 회색 */
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 60px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);  살짝 그림자 (선택) */
}

.service-intro h2 {
    font-size: 50px !important;/* ✅ 제목 크게 */
    margin-bottom: 20px;
    color: #4A90E2 !important;
}

.service-intro p {
    font-size: 22px !important; /* ✅ 본문 글자도 조금 키움 */
    line-height: 1.6;
    color: #555;
}
.service-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px !important;
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}
.service-uniqueness {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}
.uniqueness-diagram {
    text-align: center;
    margin-top: 30px;
}

.uniqueness-diagram img {
    max-width: 600px;     /* ✅ 최대 너비 제한 */
    width: 100%;          /* ✅ 부모 영역에 맞게 축소 가능 */
    height: auto;
    border-radius: 8px;
}
.service-uniqueness h2 {
    font-size: 50px !important;/* ✅ 제목 크게 */
    margin-bottom: 20px;
    color: #4A90E2 !important;
}

.service-uniqueness p {
    font-size: 16px;
    line-height: 1.6;
}

.service-uniqueness .section-lead {
    font-size: 28px;   /* ✅ 여기도 명확하게 */
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.service-icon p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.service-benefits {
    background: #f5f5f5;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.service-benefits h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    position: relative;
    flex: 0 1 calc(50% - 20px);
    background: #fff; /* 기본 흰색 (백업) */
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
    padding: 5px;
    box-sizing: border-box;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* ✅ 텍스트 아래로 */
    justify-content: flex-end; /* ✅ 텍스트 오른쪽으로 */
    text-align: right;
}

.benefit-card p {
    font-size: 16px;
    font-weight: bold;
    color: white; /* ✅ 글자는 흰색으로 */
    margin: 0;
    background: rgba(0,0,0,0.5); /* ✅ 약한 반투명 배경 추가 */
    padding: 10px 15px;
    border-radius: 8px;
}
.benefit-thumb-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: bold;
    /* background-color: red; */
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-align: center; /* ✅ 글자도 가운데 정렬 */
    z-index: 2; /* ✅ 텍스트가 오버레이보다 위에 오게 */
    width: 90%; /* ✅ 추가: 텍스트 블록 가로폭 늘리기 */
    max-width: 90%; /* ✅ 안전하게 제한 */
}

/* ✅ 오버레이 레이어 */
.benefit-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50); /* ✅ 검은색, 75% 투명도 */
    z-index: 1;
}
/* ✅ 특정 배경 이미지는 클래스별로 지정 */
.benefit-card-schedule {
    background: url('/images/service_schedule.png') center center/cover no-repeat;
}

.benefit-card-staff {
    background: url('/images/service_staff.png') center center/cover no-repeat;
}
.benefit-card-reservation {
    background: url('/images/service_reservation.png') center center/cover no-repeat;
}

.benefit-card-sales {
    background: url('/images/sales.png') center center/cover no-repeat;
}

.benefit-card-backup {
    background: url('/images/settings.png') center center/cover no-repeat;
}

.benefit-card-status {
    background: url('/images/schedule.png') center center/cover no-repeat;
}





.service-system, .service-subscription {
    margin-bottom: 60px;
}

.service-intro h2,
.service-benefits h2,
.service-system h2,
.service-subscription h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-intro p,
.service-benefits p,
.service-subscription p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}

.service-benefits ul {
    padding-left: 20px;
    margin-top: 10px;
}

.service-benefits ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
    list-style: disc;
}

/* ✅ 시스템 구성 카드 */
.system-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.system-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.system-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c7be5;
}

.system-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* ✅ 요금제 버튼 */
.service-subscription .btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #2c7be5;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.service-subscription .btn-primary:hover {
    background: #1a5dc9;
}


/* 🔹 요금제 섹션 (회색 박스 처리) */
.pricing-section {
    background-color: #f5f5f5; /* 🔹 연한 회색 배경 */
    border-radius: 12px;       /* 🔹 둥글게 */
    padding: 24px 20px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* 🔹 살짝 그림자 */
    color: #ffffff; /* 🔹 글자색 흰색 */
    /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); 🔹 어두운 그림자 */
}
/* 🔹 Basic 요금제 전용 배경 설정 */
.pricing-section.basic {
    background: url('/images/basic_bg.png') center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-section.pro {
    background: url('/images/pro_bg.png') center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}


.pricing-section p {
    font-size: 16px;
    /* color: #333; */
    margin-bottom: 12px;
}

.pricing-section .subtext {
    font-size: 14px;
    /* color: #888; */
    line-height: 1.6;
    margin-bottom: 16px;
}
.highlight-bg {
    background: rgba(74, 144, 226, 0.8);
    padding: 1px 4px;
    /* border-radius: 4px; */
  }
/* 🔹 가격표 테이블 (흰색 카드 스타일) */
.price-table {
    background-color: white; /* 🔹 흰색 배경 */
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    overflow: hidden;
    margin-top: 20px;
    text-shadow: none; /* 🔹 어두운 그림자 */
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    background-color: #ffffff; /* 🔹 각 줄도 흰색 유지 */
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.price-row:last-child {
    border-bottom: none;
}

/* 🔹 문자 충전 안내 */
/* .sms-charging {
    margin-top: 48px;
    text-align: center;
} */

.pricing-section.sms-charging {
    background: url('/images/message_bg.png') center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.pricing-section.basic,
.pricing-section.pro,
.pricing-section.sms-charging {
    color: #ffffff;
    /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); */

    /* 🔹 추가: 배경에 어두운 레이어 입히기 */
    background-color: rgba(0, 0, 0, 0.4); /* 30% 검은색 덧씌우기 */
    background-blend-mode: darken; /* 어두운 부분 강조 */
}

/* .sms-charging h2 {
    font-size: 24px;
    margin-bottom: 12px;
} */

.sms-charging p {
    font-size: 16px;
    /* color: #ffffff; */
}

.detail-button {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    background-color: #4A90E2; /* 파란색 */
    color: white;
    border-radius: 999px; /* ✅ 양 옆 완전 둥글게 */
    font-size: 11px;
    text-decoration: none;
    transition: background 0.2s;
}

.detail-button:hover {
    background-color: #357ABD; /* 조금 더 짙은 파란색으로 hover */
}

.site-footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}
.page-title {
    margin-bottom: 40px;
}
.page-title h1 {
    font-size: 36px;
}
.page-title p {
    font-size: 18px;
    color: #666;
}

.service-cards, .pricing-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card, .pricing-card {
    width: 30%;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}


.support-layout {
    display: flex;
    min-height: 600px;
    border-top: 1px solid #ddd;  /* 상단 선 */
    border-left: 1px solid #ddd; /* 왼쪽 선 */
    border-bottom: 1px solid #ddd; /* 하단 선 */
    /* 기존 */
    margin-bottom: 0;
    padding-bottom: 0;
}
.support-menu {
    width: 200px;
    flex-shrink: 0; /* 너비 유지! */
    border-right: 1px solid #ddd;
    padding-right: 20px;
}
.support-menu ul {
    list-style: none;
    padding: 0;
}
.support-menu li {
    margin-bottom: 20px;
}
.support-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.support-menu a.active {
    color: #4A90E2;
    font-weight: bold;
}
.support-content {
    flex-grow: 1;
    padding-left: 30px;
    padding-right: 30px;
}

/* .faq-category-buttons { margin-bottom: 20px; } */

.faq-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

/* .faq-category-buttons button {
    margin-right: 10px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
} */

.faq-category-buttons button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    /* border-radius: 6px; */
    background-color: white;
    cursor: pointer;
    font-size: 14px;
}

.faq-section { display: none; }
.faq-section.active { display: block; }

.faq-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    font-weight: bold;
    cursor: pointer;
}
.faq-question::before {
    content: "Q. ";
    color: #4A90E2;
    font-weight: bold;
}
.faq-answer {
    display: none;
    margin-top: 6px;
    line-height: 1.6;
}
.faq-answer::before {
    content: "A. ";
    color: #333;
    font-weight: bold;
}
.faq-question,
.faq-answer {
    text-align: left;  /* 중앙에서 좌측 정렬로 변경 */
}

.faq-category-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.faq-category-buttons button {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 16px;
    margin-right: 8px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: #666;
}
.faq-category-buttons button.active {
    color: #4A90E2;
    border-bottom: 3px solid #4A90E2;
}


.notice-list ul {
    list-style: none;
    padding: 0;
}

.notice-item {
    border-bottom: 1px solid #eee;
    padding: 12px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notice-item.pinned {
    font-weight: bold;
    background-color: #f9fbff;
}
.notice-item .title {
    flex: 1;
    font-weight: 500;
}

.notice-item .date {
    color: #888;
    font-size: 14px;
    margin-left: 10px;
}

.notice-item a {
    text-decoration: none;
    color: inherit; /* 텍스트 색상도 상속받게 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
}

.notice-item a:hover {
    text-decoration: underline; /* 마우스 올렸을 때만 밑줄 주고 싶으면 */
}

.notice-item .badge {
    background: #4A90E2;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 8px;
}
.pagination {
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}
.pagination a.active {
    background-color: #4A90E2;
    color: white;
    font-weight: bold;
    border-color: #4A90E2;
}
.page-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.page-btn:hover {
    background-color: #f0f0f0;
}
.notice-view {
    padding: 20px;
}

.notice-view .title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.notice-view .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.notice-view .content {
    font-size: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
    text-align: left;
    padding: 20px 0;
    margin-bottom: 30px;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    min-height: 120px; /* ✅ 최소 높이 추가 */
}

.notice-view .back-link a {
    color: #4A90E2;
    text-decoration: none;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin: 12px 0 4px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.contact-form button {
    margin-top: 16px;
    padding: 10px 16px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
}
.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;  /* 이것만 넣어줘도 해결됨 */
}
.login-form button {
    width: 100%;
}

.login-links {
    margin-top: 20px;
}
.login-links a {
    color: #4A90E2;
    text-decoration: none;
    margin: 0 5px;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
/* .site-nav a.guide-link {
    color: #0044cc;
    font-weight: bold;
} */
.icon-inline {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 0px;
}
.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons a {
    display: inline-block;
    white-space: nowrap;
}
.btn-primary-small {
    background: #4A90E2;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    border: none; /* ✅ 이 줄 추가! */
}

.btn-outline-small {
    background: #FFFFFF; /* ✅ 배경 흰색 추가 */
    border: 1px solid #4A90E2;
    color: #4A90E2;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary-small:hover, .btn-outline-small:hover {
    opacity: 0.8;
}

.btn-outline {
    border: 1px solid #4A90E2;
    color: #4A90E2;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline:hover {
    background-color: #f0f8ff;
}
#kakaoChannelBtn {
    position: fixed;
    bottom: 30px; /* 위치는 원하는대로 조절 */
    left: 20px;
    z-index: 999;
    display: block;
}
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    background: #2c7be5;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* 기본은 숨김 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#scrollTopBtn:hover {
    background: #1a5dc9;
}
.register-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.register-box {
    background: #f8f8f8;
    padding: 15px 10px;
    border-radius: 10px;
    width: 340px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;  /* 고정 높이 설정 */
}

.register-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.register-box ul {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;  /* 남은 공간 사용 */
}

.role-btn {
    display: block;
    text-align: center;
    background-color: #4A90E2;
    color: white;
    padding: 10px 0;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 20px;
}

.role-btn:hover {
    background-color: #357ABD;
}

.role-description {
    padding: 20px;
    color: #333;
    font-size: 16px !important; 
    line-height: 1.6;
    margin: 10px 0;
}

.register-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.logo {
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
}
.box_logo {
    display: block;
    margin: 0 auto;          /* 가로 가운데 정렬 */
    width: 100px;  
    margin-bottom: 20px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.register-form button {
    width: 100%;
    padding: 12px;
    background-color: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"],
.register-form button {
    display: block;         /* ← 이 줄이 핵심입니다 */
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.register-form button:hover {
    background-color: #357ABD;
}
.terms {
    font-size: 14px;
    margin: 20px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* 이 줄이 좌측 정렬 핵심 */
}
.terms label {
    margin-bottom: 8px;
}
.terms a {
    color: #4A90E2;
    text-decoration: underline;
}

.login-wrapper {
    max-width: 400px;
    margin: 0 auto;
}
.box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 20px;
}
.login-form input {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* .toggle-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.toggle-button {
    padding: 10px 20px;
    background: #eee;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.toggle-button.active {
    background: #4A90E2;
    color: #fff;
} */

.toggle-group {
    display: flex;
    justify-content: center;
    background: transparent;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #4A90E2;  /* ✅ 그룹 전체에만 테두리 */
    overflow: hidden;
}

.toggle-button {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    background: #FFFFFF;
    color: #4A90E2;
    cursor: pointer;
    transition: all 0.3s;
    
    border: none;  /* ✅ 테두리(스트로크) 추가 */
}

.toggle-button.active {
    background: #4A90E2;  /* ✅ 배경을 흰색으로 설정 */
    color: #FFFFFF;  /* ✅ 텍스트 색상을 D25541로 변경 */
    border: none;  /* ✅ 테두리(스트로크) 추가 */
    box-shadow: none; /* ✅ 기존 그림자 제거 */
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 반투명 검정 */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
  }
  .modal-content {
    background: white; padding: 30px; border-radius: 10px;
    text-align: center; max-width: 300px;
  }
  .loader-box {
    text-align: center;
    color: white;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ccc;
    border-top-color: #4A90E2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
.btn.primary {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}
.mypage-wrapper .box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left; /* ← 좌측 정렬 적용 */
}

.section-title {
    font-size: 16pt;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}
/* .payForm-form input {
    width: 100%; padding: 10px; font-size: 16px; border-radius: 6px; border: 1px solid #ccc;
} */

#custom_amount {
    width: 100%; padding: 10px; font-size: 16px; border-radius: 6px; border: 1px solid #ccc;
}
#custom_amount::-webkit-outer-spin-button,
#custom_amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#price_display { text-align: center; font-size: 20px; font-weight: bold; color: #2c7be5; margin-top: 10px; }


.info-block {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.btn-group {
    margin-top: 10px;
}

.btn-outline-small, .btn-primary-small {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
}

.policy-link {
    color: #0078d7;
    text-decoration: none;
}

.sms-warning {
    color: #d9534f;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;               /* ✅ 추가 */
    display: block;
}
.btn-danger {
    background-color: #e74c3c;
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-family: inherit;
    color: #fff;
}

.btn-danger:hover {
    background-color: #c0392b;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
}

.modal-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    max-width: 90%;
    max-height: 80vh;           /* ✅ 최대 높이 지정 */
    overflow-y: auto;           /* ✅ 넘치면 세로 스크롤 */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* 입력 필드 스타일 */
.modal-box input.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.modal-button-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
}
/* 버튼 간격 */
.modal-box .btn-primary-small,
.modal-box .btn-outline-small {
    width: 48%;
    margin-top: 10px;
}
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.payment-table th, .payment-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}
#price_boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 구성 */
    gap: 16px;
    margin: 20px 0;
}
.price-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px;
    background-color: #fdfdfd;
    text-align: center;
    font-size: 15px;
    color: #333;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-box.selected {
    border-color: #2c7be5;
    background-color: #e8f0fe;
    font-weight: bold;
}

.amount-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px;
    background-color: #fdfdfd;
    text-align: center;
    font-size: 15px;
    color: #333;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-box.selected {
    border-color: #2c7be5;
    background-color: #e8f0fe;
    font-weight: bold;
}

.price-title {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 600;
}

.status-info {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.status-info strong {
    color: #2c7be5;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .site-nav {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }
    .download-buttons {
        flex-direction: column; /* 가로 → 세로 */
    }
    /* ✅ 무료 체험 안내 배너 스타일 */
    .free-trial-banner {
        font-size: 12px;
    }
    .price-plan {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .hide-on-mobile {
        display: none;
    }
    .auth-buttons {
        margin-top: 10px;
    }

    .benefit-thumb-text {
        font-size: 24px;
    }

    .feature-categories {
        flex-direction: column; /* ✅ 추가: 모바일에서는 세로 정렬로 바꿈 */
    }

    .feature-card {
        flex: 0 1 90%;
    }

    .feature-category {
        flex: 1 1 100%; /* ✅ 모바일에서 무조건 100% */
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .feature-category-sub {
        flex-direction: column;
        align-items: center;
    }

    .feature-content {
        width: 100%;
    }

    .feature-items {
        grid-template-columns: 1fr;
    }
    .feature-thumb {
        width: 100%;
        height: 150px;
    }
    /* Lightbox 안 콘텐츠 */
    #lightbox-image {
        max-width: 85%;
    }
    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }
    .benefit-card {
        flex: 0 0 auto; /* ✅ flex 초기화 추가 */
        width: 100%;    /* ✅ 가로 꽉 채움 */
        max-width: 100%;

    }
    .feature-screenshots {
        justify-content: center;
    }
    .screenshot-box {
        width: 35%;
    }
    /* .comic-strip .comic-frame {
        flex: 1 1 100%;
    } */

    .comic-strip {
        display: flex;
        justify-content: center;  /* ✅ 좌우 가운데 정렬 */
        flex-wrap: wrap;
    }
    
    .comic-strip .comic-frame {
        flex: 1 1 100%;
        max-width: 600px;   /* ✅ 최대 너비 설정 (선택) */
    }

    .support-layout {
        flex-direction: column;
    }

    .support-menu {
        width: 100%;
        border-right: none;
        padding: 0;
        border-bottom: 1px solid #ddd;
    }

    .support-menu ul {
        display: flex;
        justify-content: space-around;
        gap: 4px;
        margin: 0;
    }

    .support-menu li {
        margin-bottom: 0;
        
    }

    .support-menu a {
        display: block;
        padding: 10px 6px;
        text-align: center;
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }

    .support-menu a.active {
        color: #4A90E2;
        border-bottom: 2px solid #4A90E2;
    }
    .faq-category-buttons {
        flex-direction: column;
    }

    .faq-category-buttons button {
        width: 100%;
        text-align: left;
    }
}
@media (min-width: 769px) {
    .site-header {
        position: sticky;
        top: 0;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .comic-strip .comic-frame {
        flex: 1 1 calc(50% - 20px);  /* 태블릿: 2컷 */
    }
}

@media (min-width: 1025px) {
    .comic-strip .comic-frame {
        flex: 1 1 calc(25% - 20px);  /* 데스크탑: 4컷 */
    }
}