.pc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pc-section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height:1.2rem;
    background-color: var(--color-main);
    margin-right: 1rem;
}


.pc-see-all {
    color: var(--color-main);
    font-weight: 600;
    font-size: 1rem;
}

.pc-see-all:hover {
    color: var(--color-main-dark);
}

/* ==================== PC 메인 카드 그리드 ==================== */
.pc-main-grid-section {
    display: none;
    background: #fff;
    padding: 2rem;
    position: relative;
}

/* 세밀한 대각선 줄무늬 배경 */
.pc-main-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
    );
    pointer-events: none;
}

.main-grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 왼쪽 4개 카드 그리드 */
.left-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.main-card {
    background: #FFD54F;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 180px;
    position: relative;
}

.main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.main-card.yellow {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.main-card.teal {
    background: linear-gradient(135deg, #4DB6AC 0%, #26A69A 100%);
}

.main-card.blue {
    background: linear-gradient(135deg, #64B5F6 0%, #42A5F5 100%);
}

.main-card.green {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.main-card .card-icon {
    margin-bottom: 1rem;
}

.main-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* 중앙 메인 배너 슬라이더 */
.center-banner-slider {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.center-banner-slider .swiper {
    width: 100%;
    height: 100%;
}

.center-banner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-banner-slider .banner-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-banner-slider .banner-slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 480px;
    border-radius: 15px;
}

/* 슬라이더 네비게이션 버튼 커스터마이징 */
.center-banner-slider .swiper-button-prev,
.center-banner-slider .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.center-banner-slider .swiper-button-prev svg,
.center-banner-slider .swiper-button-next svg {
    height:20px;
}

.center-banner-slider .swiper-button-prev {left:20px;}
.center-banner-slider .swiper-button-next {right:20px;}

.center-banner-slider .swiper-button-prev:hover,
.center-banner-slider .swiper-button-next:hover {
    background: white;
    transform: scale(1.1);
}

.center-banner-slider .swiper-button-prev::after,
.center-banner-slider .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* 페이지네이션 커스터마이징 */
.center-banner-slider .swiper-pagination {
    bottom: 20px;
}

.center-banner-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.center-banner-slider .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* 하단 추가 카드 */
.bottom-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.bottom-card {
    background: #FFD54F;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 100px;
    position: relative;
}

.bottom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bottom-card.yellow-dark {
    background: linear-gradient(135deg, #F9A825 0%, #F57F17 100%);
}

.bottom-card.blue-bright {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
}

.bottom-card.blue-medium {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.bottom-card.yellow-bright {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.bottom-card.blue-sky {
    background: linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
}

.bottom-card h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.bottom-card .card-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bottom-card .card-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.bottom-card .badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bottom-card .date {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.bottom-card .card-icon-small {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* 반응형 */
@media (max-width: 1200px) {
    .main-grid-container {
        grid-template-columns: 1fr;
    }

    .bottom-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .left-cards-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== PC 메인 콘텐츠 ==================== */
.pc-main-content {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* PC 주간 일정 */
.pc-weekly-section {
    background: var(--color-bg-alt);
    padding: 2rem;
}

.pc-weekly-section .pc-schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:1rem;
}

.pc-weekly-section .pc-schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.pc-weekly-section .pc-schedule-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height:1.2rem;
    background-color: var(--color-main);
    margin-right: 1rem;
}

.pc-weekly-section .pc-schedule-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pc-weekly-section .pc-schedule-info {
    font-size: 0.95rem;
    color: #666;
    margin-right: 1rem;
}

.pc-weekly-section .pc-schedule-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-main-light);
    background: var(--color-white);
    color: var(--color-main-light);
    font-weight: 700;
    font-size: 1.3rem;
}

.pc-weekly-section .pc-schedule-btn:hover {
    background: var(--color-main-light);
    color: var(--color-white);
    transform: scale(1.05);
}

.pc-weekly-section .pc-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 2rem;
}

.pc-weekly-section .pc-day-card {
    background: var(--color-white);
    border: 1px solid #eee;
    padding: 1.0rem;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.pc-weekly-section .pc-day-card + .pc-day-card {margin-left:-1px;}

.pc-weekly-section .pc-day-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.pc-weekly-section .pc-day-card.today {
    border: 2px solid var(--color-main);
    box-shadow: 0 6px 20px rgba(47, 108, 136, 0.2); /* main 기준 */
    transform: translateY(-6px);
}

.pc-weekly-section .pc-day-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--color-main-soft);
    padding-bottom: 0.8rem;
}

.pc-weekly-section .pc-day-header.today {
    border-bottom: 2px solid var(--color-main-soft);
}

.pc-weekly-section .pc-day-number {
    font-size: 1.6rem;
    font-weight: 700;
}

.pc-weekly-section .pc-day-number.today {
    border-bottom-color: var(--color-main);
}

.pc-weekly-section .pc-day-weekday {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.pc-weekly-section .pc-day-tag {
    background: var(--color-main-light);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pc-weekly-section .pc-activities-list {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.pc-weekly-section .pc-activity-item {
    background: var(--color-main-soft);
    padding: 0.8rem 1rem;
    margin-bottom: 0.7rem;
    font-size: 1.0rem;
    line-height: 1.5;
    border-left: 3px solid var(--color-main);
}

.pc-weekly-section .pc-activity-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    margin-right: 0.4rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pc-weekly-section .pc-activity-tag.tag1 {
    background: #B3E5FC;
    color: #01579B;
}

.pc-weekly-section .pc-activity-tag.tag2 {
    background: #F8BBD0;
    color: #880E4F;
}

.pc-weekly-section .pc-activity-tag.tag3 {
    background: #E1BEE7;
    color: #4A148C;
}

.pc-weekly-section .pc-activity-tag.tag4 {
    background: #E1BEE7;
    color: #4A148C;
}

.pc-weekly-section .pc-activity-tag.tag5 {
    background: #C8E6C9;
    color: #1B5E20;
}

.pc-weekly-section .pc-activity-text {
    color: #333;
    font-weight: 500;
}

.pc-weekly-section .pc-no-activities {
    color: #BBB;
    font-size: 0.9rem;
    font-style: italic;
    padding: 1rem;
    text-align: center;
}

/* PC 활동분야 섹션 */
.feature-grid {

}

.feature-grid .pc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-grid .pc-feature-card {
    background: var(--color-white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 6px solid var(--color-main);

    display: flex;
    flex-direction: column;
    height: 100%;
}


.feature-grid .pc-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-grid .pc-card-icon {
    font-size: 4rem;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-main-soft) 0%, var(--color-bg-soft)  100%);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid .pc-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-grid .pc-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-grid .pc-card-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.feature-grid .pc-card-features {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.feature-grid .pc-card-features li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-grid .pc-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-main);
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-grid .pc-card-button {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-light)  100%);
    color: var(--color-white);
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    min-height: 48px;
}

.feature-grid .pc-card-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(91, 156, 184, 0.35);
}

/* PC 추천 섹션 */
.pc-recommended-section {
    display: none;
    background: linear-gradient(135deg, var(--color-main-soft) 0%, var(--color-bg-soft)  100%);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.pc-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.pc-product-card {
    background: white;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pc-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.pc-product-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.pc-product-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pc-product-price {
    font-size: 1.3rem;
    color: var(--color-main);
    font-weight: 700;
}


/* Section Wrapper */
.activities-section {
    padding:2rem;
}

.activities-section .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* Activity Card */
.activities-section .activity-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.activities-section .activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.activities-section .activity-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.activities-section .activity-card-content {
    padding: 16px;
}

.activities-section .activity-card-category {
    font-size: 12px;
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.activities-section .activity-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.4;
}

.activities-section .activity-card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.activities-section .activity-card-description::after {
    content: '→';
    margin-left: auto;
    color: #ccc;
    font-weight: bold;
}


/* Responsive Design */
@media (max-width: 768px) {
    .activities-section {
        padding:0px;
    }

    .activities-section .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .activities-section .activity-card-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .activities-section {
        padding:0px;
    }
    .activities-section .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== 쇼핑몰 BEST 섹션 ==================== */
.shopping-best-section {
    background: white;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
}

.shopping-best-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.shopping-best-card {
    background: white;
    border: 1px solid #E8EEF3;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.shopping-best-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(91, 156, 184, 0.15);
}

.shopping-best-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f5f5f5;
}

.shopping-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shopping-best-card:hover .shopping-image {
    transform: scale(1.05);
}

.shopping-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--color-accent)  0%, var(--color-accent-strong)  100%);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

.shopping-best-content {
    padding: 1.2rem;
}

.shopping-best-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shopping-best-price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-discount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-strong);
}

.price-normal {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-main);
}

/* 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .shopping-best-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .shopping-best-section {
        padding:0;
        padding-top:30px;
    }

    .shopping-best-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shopping-best-image {
        height: 200px;
    }

    .shopping-best-title {
        font-size: 0.9rem;
    }
}

/* ==================== 농촌 정보 섹션 (네임스페이싱) ==================== */

/* 섹션 컨테이너 */
.rural-info-section {
    background: var(--color-bg-alt);
    padding:2rem;
}

/* 섹션 제목 */
.rural-info-section .rural-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #5B9CB8;
}

.rural-info-section .rural-section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 1.8rem;
    background-color: var(--color-main);
    margin-right: 1rem;
}

/* 그리드 레이아웃 - 2x2 */
.rural-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* 카드 기본 스타일 */
.rural-info-section .info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.rural-info-section .info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* 카드 헤더 */
.rural-info-section .card-header {
    background: var(--color-main-soft);
    color: var(--color-text);
    padding:0.84rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* 더보기 버튼 */
.rural-info-section .more-btn {
    background: rgba(255, 255, 255, 0.7);
    color:#000;
    border: 1px solid white;
    padding: 0.4rem 0.8rem;
    font-size:0.84rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.rural-info-section .more-btn:hover {
    background: var(--color-white);
    color: var(--color-main);
    transform: scale(1.05);
}

/* 카드 본문 - 기본값 (3열) */
.rural-info-section .card-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 생활교육 스타일 */
.rural-info-section .card-body.lifestyle {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    grid-template-columns: 1fr;
}

.rural-info-section .lifestyle-item {
    background: white;
    border: 1px solid #D4E0E8;
    padding: 1.2rem;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.rural-info-section .lifestyle-item:hover {
    background: #F0F5F8;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rural-info-section .lifestyle-image {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background: linear-gradient(135deg, #C8E4E8 0%, #D4C8E8 100%);
    flex-shrink: 0;
}

.rural-info-section .lifestyle-content h4 {
    color: var(--color-main);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.rural-info-section .lifestyle-content p {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 쇼핑담 스타일 */
.rural-info-section .card-body.shopping {
    grid-template-columns: repeat(2, 1fr);
}

.rural-info-section .shopping-item {
    background: linear-gradient(135deg, #E8F0F5 0%, #F0F8FB 100%);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 160px;
}

.rural-info-section .shopping-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    background:#f9f9f9;
}

.rural-info-section .shopping-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rural-info-section .shopping-title {
    font-weight: 600;
    color: var(--color-main);
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
}

.rural-info-section .shopping-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 패거진 스타일 */
.rural-info-section .content-item {
    background: #F9F9F9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.rural-info-section .content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: white;
}

.rural-info-section .content-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 0 0.8rem 0;
    background: linear-gradient(135deg, #B8D8E8 0%, #D4C8E8 100%);
    display: block;
}

.rural-info-section .content-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-main);
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
    flex-grow: 1;
}

.rural-info-section .content-desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 이야기마당 스타일 */
.rural-info-section .card-body.stories {
    display:flex;
    gap: 1.5rem;
}

.rural-info-section .story-item {
    display:grid;
    gap:10px;
    width:20%;
    grid-template-columns: repeat(1, 1fr);
    cursor: pointer;
    transition: all 0.3s;
    height:40px;
}

.rural-info-section .story-list {
    display:grid;
    gap:10px;
    grid-template-columns: repeat(1, 1fr);
    width:70%;
}

.rural-info-section .story-list li {list-style:none;width:100%;}
.rural-info-section .story-list li a {display:flex;height:40px;border-bottom:solid 1px #eee;font-size:0.84rem;align-items: center;}
.rural-info-section .story-list li a:hover {font-weight:bold;}

.rural-info-section .story-item:hover {
    transform: translateY(-2px);
}

.rural-info-section .story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 0 0.8rem 0;
    background: linear-gradient(135deg, #B8D8E8 0%, #D4C8E8 100%);
    display: block;
}

.rural-info-section .story-title {
    font-weight: 600;
    color: #5B9CB8;
    margin: 0 0 0.6rem 0;
    font-size: 0.95rem;
}

.rural-info-section .story-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.rural-info-section .story-tag {
    background: #f9f9f9;
    color: #333;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
    cursor: pointer;
    height:40px;
    justify-content: center;
}

.rural-info-section .story-tag.active {background: #E8F0F5;
    color: var(--color-main);}

.rural-info-section .story-tag:hover {
    background: #D4E8F0;
    transform: scale(1.05);
}

/* 반응형 */
@media (max-width: 1135px) {
    .rural-info-section {
        background:#fff;
        padding: 0;
    }
    .rural-info-section .info-grid {
        grid-template-columns: 1fr;
    }

    .rural-info-section .card-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .rural-info-section .lifestyle-item {
        grid-template-columns: 120px 1fr;
    }

    .rural-info-section .lifestyle-image {
        width: 120px;
        height: 100px;
    }
}

@media (max-width: 640px) {
    .rural-info-section {
        margin: 2rem auto;
        padding: 0;
    }

    .rural-info-section .rural-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .rural-info-section .card-body {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .rural-info-section .card-body.shopping {
        grid-template-columns: 1fr;
    }

    .rural-info-section .shopping-item {
        padding: 1rem 0.5rem;
        min-height: 130px;
    }

    .rural-info-section .shopping-icon {
        font-size: 2rem;
    }

    .rural-info-section .lifestyle-item {
        grid-template-columns: 100px 1fr;
    }

    .rural-info-section .lifestyle-image {
        width: 100px;
        height: 80px;
    }

    .rural-info-section .card-header {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .rural-info-section .more-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
}

/* ==================== 모바일 배너 ==================== */
.mobile-banner-section {
    display: block;
    background: white;
    position: relative;
}

.mobile-banner-section .swiper {
    width: 100%;
    height: 250px;
}

.mobile-banner-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.mobile-banner-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-banner-section .swiper-button-prev,
.mobile-banner-section .swiper-button-next {
    width: 40px;
    height: 40px;

    background-color: rgba(255, 255, 255, 0.4);
    border-radius:50px;
    color:#333;
}

.mobile-banner-section .swiper-button-prev:hover,
.mobile-banner-section .swiper-button-next:hover {
    background-color: #5B9CB8;
}

/* ==================== 모바일 메인 카드 그리드 ==================== */
.mobile-main-grid-section {
    display: none;
    background: #f5f5f5;
    padding: 1rem;
    position: relative;
}

/* 모바일 줄무늬 배경 */
.mobile-main-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
    );
    pointer-events: none;
}

.mobile-grid-container {
    position: relative;
    z-index: 1;
}

/* 모바일 4개 카드 */
.mobile-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.mobile-main-card {
    background: #FFD54F;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-height: 120px;
}

.mobile-main-card:active {
    transform: scale(0.95);
}

.mobile-main-card.yellow {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.mobile-main-card.teal {
    background: linear-gradient(135deg, #4DB6AC 0%, #26A69A 100%);
}

.mobile-main-card.blue {
    background: linear-gradient(135deg, #64B5F6 0%, #42A5F5 100%);
}

.mobile-main-card.green {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.mobile-main-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mobile-main-card h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* 모바일 배너 슬라이더 */
.mobile-banner-slider {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mobile-banner-slider .swiper {
    width: 100%;
}

.mobile-banner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-banner-slider .swiper-slide img {
    width: 100%;
    height:auto;
    object-fit: contain;
    border-radius: 10px;
}

.mobile-banner-slider .swiper-button-prev,
.mobile-banner-slider .swiper-button-next {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.mobile-banner-slider .swiper-button-prev svg,
.mobile-banner-slider .swiper-button-next svg{
    height:20px;
}

.mobile-banner-slider .swiper-button-prev {left:20px;}
.mobile-banner-slider .swiper-button-next {left:20px;}

.mobile-banner-slider .swiper-button-prev::after,
.mobile-banner-slider .swiper-button-next::after {
    font-size: 1rem;
}

.mobile-banner-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
}

.mobile-banner-slider .swiper-pagination-bullet-active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* 모바일 하단 카드 */
.mobile-bottom-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.mobile-bottom-card {
    background: #FFD54F;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 80px;
}

.mobile-bottom-card:active {
    transform: scale(0.95);
}

.mobile-bottom-card.yellow-dark {
    background: linear-gradient(135deg, #F9A825 0%, #F57F17 100%);
}

.mobile-bottom-card.blue-bright {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
}

.mobile-bottom-card.blue-medium {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.mobile-bottom-card.yellow-bright {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.mobile-bottom-card.blue-sky {
    background: linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
}

.mobile-bottom-card h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.mobile-bottom-card .card-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.mobile-bottom-card .card-detail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.mobile-bottom-card .badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-bottom-card .date {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-bottom-card .card-icon-small {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* ==================== 모바일 메인 콘텐츠 ==================== */
.mobile-main-content {
    display: block;
    padding: 1.5rem 1rem;
}

/* 모바일 공지 */
.mobile-notice-banner {
    background: linear-gradient(135deg, var(--color-main-soft) 0%, var(--color-bg-soft)  100%);
    padding: 1rem;
    border-left: 4px solid var(--color-main);
    margin-bottom: 1.5rem;
}

.mobile-notice-banner h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.mobile-notice-banner p {
    font-size: 0.9rem;
    color: #555;
}

.mobile-badge {
    display: inline-block;
    background-color: var(--color-main);
    color: var(--color-white);
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.4rem;
}

/* 모바일 주간 일정 */
.mobile-weekly-schedule {
    background: white;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.mobile-schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:0.6rem;
}

.mobile-schedule-header .btn-more {
    background:none;
    font-size:30px;
}

.mobile-schedule-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.mobile-schedule-add {
    width: 36px;
    height: 36px;
    background: var(--color-main);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
}

.mobile-schedule-add:active {
    transform: scale(0.95);
}

.mobile-schedule-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.mobile-day-tab {
    flex-shrink: 0;
    background: white;
    border: 2px solid var(--color-border);
    padding: 0.8rem 1rem;
    text-align: center;
    cursor: pointer;
    min-width: 80px;
}

.mobile-day-tab.active {
    background: var(--color-main);
    color: var(--color-white);
    border-color: var(--color-main);
}

.mobile-day-tab-number {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}

.mobile-day-tab-text {
    font-size: 0.75rem;
    opacity: 0.7;
}

.mobile-day-tab.active .mobile-day-tab-text {
    opacity: 1;
}

.mobile-schedule-detail {
    color: var(--color-main);
    border-bottom: 2px solid var(--color-main);
    padding: 1rem;
}

.mobile-detail-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid  var(--color-main);
}

.mobile-detail-dayname {
    font-size: 0.85rem;
    color: #999;
}

.mobile-activities-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-activity-item {
    background: white;
    padding: 0.8rem;
    border-left: 3px solid var(--color-main);
    font-size: 0.9rem;
    line-height: 1.4;
}

.mobile-activity-tag {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.mobile-activity-tag.신체 {
    background: #B3E5FC;
    color: #01579B;
}

.mobile-activity-tag.미술 {
    background: #F8BBD0;
    color: #880E4F;
}

.mobile-activity-tag.음악 {
    background: #E1BEE7;
    color: #4A148C;
}

.mobile-activity-tag.인지 {
    background: #FFE0B2;
    color: #E65100;
}

.mobile-activity-tag.정서 {
    background: #C8E6C9;
    color: #1B5E20;
}

.mobile-activity-text {
    color: #333;
    font-weight: 500;
}

.mobile-no-activities {
    color: #BBB;
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    font-style: italic;
}

/* 모바일 섹션 */
.mobile-section-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.mobile-section-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.3rem;
    background-color: var(--color-main);
    margin-right: 0.6rem;
}

.mobile-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-feature-card {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #5B9CB8;
    display: flex;
    flex-direction: column;
}

.mobile-feature-card:nth-child(2) {
    border-top-color: #C8E4E8;
}

.mobile-feature-card:nth-child(3) {
    border-top-color: #B8D8E8;
}

.mobile-feature-card:nth-child(4) {
    border-top-color: #D4C8E8;
}

.mobile-feature-card:nth-child(5) {
    border-top-color: #5B9CB8;
}

.mobile-feature-card:nth-child(6) {
    border-top-color: #C8E4E8;
}

.mobile-feature-card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mobile-card-icon {
    font-size: 2.5rem;
    padding: 1.2rem 0.8rem 0.8rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-main-soft) 0%, var(--color-bg-soft)  100%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mobile-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.mobile-card-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.mobile-card-features {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.mobile-card-features li {
    list-style: none;
    padding-left: 0.9rem;
    position: relative;
    margin-bottom: 0.2rem;
}

.mobile-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5B9CB8;
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-card-button {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-light)  100%);
    color: white;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    min-height: 40px;
}

.mobile-card-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(91, 156, 184, 0.3);
}

/* 모바일 추천 */
.mobile-recommended-section {
    display: block;
    background: linear-gradient(135deg, var(--color-main-soft) 0%, var(--color-bg-soft)  100%);
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}

.mobile-recommended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.mobile-product-card {
    background: white;
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-product-card:active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-product-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.mobile-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.mobile-product-price {
    font-size: 0.95rem;
    color: var(--color-main);
    font-weight: 700;
}