/*------------------------------------------------------------------------------------------------------
환영인사
---------------------------------------------------------------------------------------------------------*/
.greet_sub_title {
    font-size: clamp(20px, 2.8vw, 28px);
    color: #F19141;
    word-break: keep-all;
}

.greet_title {
    font-size: clamp(32px, 4.5vw, 48px);
    word-break: keep-all;
}
.greet_img_box {
    width: 100%;
    /* 비율을 21/9로 설정하여 더 얇고 와이드하게 만듭니다. 필요시 3/1 등으로 더 줄일 수 있습니다. */
    aspect-ratio: 21 / 9; 
    /* 최대 높이를 설정하여 큰 화면에서도 너무 커지지 않도록 제한합니다. */
    max-height: 450px;
    background-color: #e9ecef;
    border-radius: 0;
    overflow: hidden;
    margin-top: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.greet_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.greet_description {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.85;
    word-break: keep-all;
    max-width: 960px;
    margin-top: clamp(2rem, 3vw, 3.5rem);
}

/*------------------------------------------------------------------------------------------------------
축제개요
---------------------------------------------------------------------------------------------------------*/
.management_wrap dt::before {
	content:"\f192";
	font-family: "Font Awesome 5 Free"; font-weight: 900; color: #ff4f2e; margin-right: 15px;
}

/*------------------------------------------------------------------------------------------------------
교통안내 공통
---------------------------------------------------------------------------------------------------------*/
.locaguide-footer {margin-top: clamp(40px, 5vw, 60px); padding-top: 0; border-top: none;}
.locanotice-box {
    position: relative;
    padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 32px);
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background-color: rgba(0, 0, 0, 0.02);
}

.locanotice-box .loca_notice {
    margin: 0;
    font-size: 0.95em; font-weight: 600;
    line-height: 1.6; word-break: keep-all; letter-spacing: -0.01em;
}

/*------------------------------------------------------------------------------------------------------
오시는길
---------------------------------------------------------------------------------------------------------*/
.location-wrap {
    margin: 0 auto;
    padding: clamp(30px, 4vw, 60px) 10px 0;
    color: #111;
    word-break: keep-all;
}

.location-header {
    margin-bottom: clamp(40px, 5vw, 64px);
}

.location-header .main-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.location-header .address-text {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    color: #444;
    line-height: 1.4;
    margin: 0;
}
.map-container {
    width: 100%;
    /*height: clamp(380px, 45vh, 560px);*/
    height: clamp(380px, 35vw, 560px); /* vh -> vw 로 변경 */
    margin-bottom: clamp(60px, 8vw, 100px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2);
}
.map-image-block {
    width: 100%;
    margin-bottom: clamp(80px, 10vw, 140px);
    text-align: center;
}

.map-image-block img {
    max-width: 100%;
    height: auto;
}
.locaguide-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 100px);
    border-top: 2px solid currentColor;
    padding-top: clamp(48px, 6vw, 80px);
}
.locaguide-row-section {
    display: flex;
    flex-direction: column;
}

.loca-header-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.locaguide-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1;
}

.region-sub {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    opacity: 0.6;
    letter-spacing: -0.02em;
}

.guide-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 60px);
}

@media (min-width: 992px) {
    .guide-grid-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.locaguide-item {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid currentColor;
}

.locaguide-item .route-label {
    display: block;
    margin-bottom: clamp(32px, 4vw, 48px);
    /*opacity: 0.7;*/
}

.locaguide-item .loca_detail {
    line-height: 1.6;
    margin: 0;
    text-align: left;
    word-break: keep-all;
}

.locaguide-item .loca_detail .arrow {
    display: inline-block;
    font-weight: 300;
    margin: 0 4px;
    opacity: 0.5;
}

.localink-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: wrap;
    width: 100%;
}
.locatext-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
    max-width: 280px;
    
    padding: 14px 16px;
    font-weight: 800;
    text-decoration: none;
    
    white-space: nowrap;
    
    border-bottom: 2px solid currentColor;
    transition: opacity 0.25s ease;
}

.locatext-link span {
    white-space: nowrap;
}

.locatext-link svg {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.locatext-link:hover {
    opacity: 0.6;
}

.locatext-link:hover svg {
    transform: translateX(6px);
}

/*------------------------------------------------------------------------------------------------------
주차장안내 
---------------------------------------------------------------------------------------------------------*/
.parking-guide-wrap {
    margin-top: clamp(40px, 6vw, 80px);
}
.parking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.parking-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(16px, 2vw, 24px) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.parking-item:first-child {
    padding-top: 0;
}

.parking-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 900;
    flex-shrink: 0;
}

.parking-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
    line-height: 1.5;
    word-break: keep-all;
}

.parking-name {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.parking-desc {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 500;
    opacity: 0.8;
}

/* 차 없는 축제 안내 박스 */
.parking-notice-block {
    display: flex;
    height: 100%;
}

.parking-notice-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
    border-left: 4px solid var(--main);
    border-right: 4px solid var(--main);
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
    background-color: rgba(0, 0, 0, 0.02);
    text-align: center;
}

.notice-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 6vw, 72px);
    height: clamp(56px, 6vw, 72px);
    margin-bottom: clamp(20px, 2.5vw, 28px);
    border-radius: 50%;
    border: 2px solid var(--main);
    color: var(--main);
}

.notice-icon {
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
}

.notice-text {
        color: var(--main);
        font-weight: 700;
        line-height: 1.6;
        margin: 0;
        word-break: keep-all;
        letter-spacing: -0.02em;
}

@media (min-width: 992px) {
    .parking-info {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }
}

/*------------------------------------------------------------------------------------------------------
축제일정
---------------------------------------------------------------------------------------------------------*/
main,
.rf7-subSection,
.schedule-wrap + .container,
.schedule-wrap {
    min-width: 0;
}

.schedule-wrap {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.schedule-wrap .shuttle-table-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

.schedule-wrap .schedule-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.schedule-wrap .schedule-col--time  { width: 8%;  }
.schedule-wrap .schedule-col--space { width: 12%; }
.schedule-wrap .schedule-col--day   { width: 16%; }

/*.schedule-wrap .schedule-table th,*/
.schedule-wrap .schedule-table td {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: keep-all;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
    vertical-align: middle;
    text-align: center;
    padding: clamp(12px, 1.4vw, 16px) clamp(8px, 1vw, 12px);
    font-size: clamp(13px, 1.1vw, 15px);
}

.schedule-wrap .schedule-table th {
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .schedule-wrap .schedule-table th,
    .schedule-wrap .schedule-table td {
        padding: 10px 6px;
        font-size: 12.5px;
        line-height: 1.45;
    }
}

@media (max-width: 575.98px) {
    .schedule-wrap .schedule-table th,
    .schedule-wrap .schedule-table td {
        padding: 9px 5px;
        font-size: 11.5px;
    }
}

/*------------------------------------------------------------------------------------------------------
셔틀버스안내 
---------------------------------------------------------------------------------------------------------*/
/*.shuttle_wrap li span {width: 50px; margin-right: 15px; padding: 5px 0; text-align: center;}*/
.shuttle_wrap i {top: 22px;}
.shuttle_wrap table {font-size: initial;}

.shuttle-section {
    margin-top: clamp(56px, 7.5vw, 120px);
    width: 100%;
}

.shuttle-main-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.shuttle-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 900;
    flex-shrink: 0;
}

.shuttle-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 24px);
    padding: clamp(16px, 2vw, 20px) clamp(20px, 2.5vw, 28px);
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background-color: rgba(0, 0, 0, 0.02);
}

.shuttle-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.shuttle-info-label {
    opacity: 0.6;
}

.shuttle-info-label::after {
    content: " :";
}

.shuttle-info-val {
    font-weight: 800;
}

/* 그리드 레이아웃 */
.shuttle-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
}

@media (min-width: 992px) {
    .shuttle-grid-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.shuttle-table-block {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shuttle-caption {
    text-align: right;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.shuttle-table-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

.shuttle-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    text-align: center;
    /*font-size: clamp(14px, 1.4vw, 16px);*/
    word-break: keep-all;
}

@media (max-width: 767.98px) {
    .shuttle-table-wrap {
        padding-bottom: 6px;
    }

    .shuttle-table {
        min-width: 640px;
    }
}

.shuttle-table th,
.shuttle-table td {
    padding: clamp(10px, 1.2vw, 14px) 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    vertical-align: middle;
}

.shuttle-table thead th {
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 2px solid currentColor;
}

.shuttle-table td {
    font-weight: 500;
}

.shuttle-cell-origin {
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.02);
}

.shuttle-divider-row td {
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.5;
    padding: 4px 0;
}

.shuttle-schedule-group {
    margin-top: clamp(40px, 5vw, 80px);
}

.shuttle-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 800;
    margin-bottom: clamp(12px, 1.5vw, 16px);
    letter-spacing: -0.02em;
}

.shuttle-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid currentColor;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 800;
    line-height: 1.2;
    background-color: rgba(0, 0, 0, 0.05);
}

	/*-----------------------
	탭
	-----------------------*/
/* 탭 전체 스타일 */
.tabs {width: 100%;margin: 0 auto;}

/* 탭 스타일 */
.tab_item {
  width: calc(100%/2); height: 50px;
  background-color: #f8f8f8; border-bottom: 3px solid #333;
  line-height: 50px; text-align: center;
  float: left; display: block; text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  cursor:pointer;
}
.tab_item:hover {
  opacity: 0.75;
}

/* 라디오 버튼 UI삭제*/
input[name="tab_item"] {
  display: none;
}

/* 탭 컨텐츠 스타일 */
.tab_content {
  display: none;
  padding: clamp(48px, 6vw, 80px) 0;
  clear: both;
  overflow: visible;
}

/* 선택 된 탭 콘텐츠를 표시 */
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#tb2023:checked ~ #tb2023_content,
#design:checked ~ #design_content,
#desi:checked ~ #desi_content {
  display: block;
}

/* 선택된 탭 스타일 */
.tabs input:checked + .tab_item {
  background-color: #333333;
  color: #fff;
}

/*------------------------------------------------------------------------------------------------------
주요 프로그램
---------------------------------------------------------------------------------------------------------*/
.mainev-wrap {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 80px);
    /*padding: clamp(20px, 3vw, 40px) 0 clamp(60px, 8vw, 120px);*/
}

.mainev-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3.5vw, 48px);
    padding-bottom: clamp(48px, 6vw, 80px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mainev-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 992px) {
    .mainev-item {
        grid-template-columns: 5fr 7fr;
        align-items: start;
    }
    .mainev-item .mainev-extra {
        grid-column: 1 / -1;
    }
    .mainev-item > * {
        min-width: 0;
    }
}

.mainev-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mainev-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.mainev-item:hover .mainev-media img {
    transform: scale(1.04);
}

.mainev-content {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
}

.mainev-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    text-align: left;
    color: #111;
    position: relative;
    padding-bottom: clamp(10px, 1.5vw, 16px);
}

.mainev-title::after {
    display: none;
}

.mainev-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    padding: clamp(16px, 2vw, 20px) 0;
    margin-top: clamp(0px, 0.5vw, 8px);
    border-top: 1.5px solid #222;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    overflow: visible;
}

.mainev-meta::before {
    display: none;
}

@media (min-width: 768px) {
    .mainev-meta {
        grid-template-columns: auto 1fr auto 1fr;
        gap: 8px 24px;
        align-items: center;
    }
}

.mainev-meta__row {
    display: contents;
    padding: 0;
    border: none !important;
}

.mainev-meta__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 700;
    letter-spacing: -0.005em;
    color: #555;
    text-transform: none;
}

.mainev-meta__label i {
    color: var(--main);
    font-size: clamp(14px, 1.3vw, 16px);
}

.mainev-meta__value {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.55;
    font-weight: 600;
    color: #111;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: keep-all;
    letter-spacing: -0.005em;
}

.mainev-desc {
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.75;
    font-weight: 500;
    color: #333;
    text-align: left;
    margin: clamp(24px, 3vw, 40px) 0 0 0;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

.mainev-extra {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 80px);
    margin-top: clamp(24px, 3vw, 40px);
    min-width: 0;
}

.mainev-table-block {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    min-width: 0;
}

@media (max-width: 991.98px) {
    .mainev-wrap {
        padding-top: 8px;
    }
    .mainev-meta__label {
        width: 48px;
    }
}

@media (max-width: 575.98px) {
    .mainev-item {
        gap: 20px;
        padding-bottom: 44px;
    }
    .mainev-media {
        aspect-ratio: 5 / 4;
    }
}

/*------------------------------------------------------------------------------------------------------
체험 프로그램
---------------------------------------------------------------------------------------------------------*/
.exp-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 0 clamp(40px, 5vw, 72px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    background-color: #fafafa;
}

.exp-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.exp-wrap {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(56px, 7vw, 96px);
    padding: clamp(8px, 1vw, 16px) 0 clamp(56px, 7vw, 96px);
}

.exp-yard {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 56px);
}

.exp-yard__title {
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
    text-align: center;
    color: #111;
    position: relative;
    padding-bottom: clamp(28px, 3.5vw, 44px);
    border-bottom: 2px solid #222;
}

.exp-store {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
    /*padding: clamp(32px, 4vw, 56px) 0;*/
}

.exp-store + .exp-store {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: clamp(36px, 4.5vw, 64px);
    margin-top: clamp(8px, 1vw, 16px);
}

.exp-store__header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 24px);
    padding-left: clamp(18px, 2.2vw, 28px);
    border-left: 3px solid var(--main);
    background-color: rgba(0, 0, 0, 0.045);
    border-radius: 4px;
}

.exp-store__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4px, 0.6vw, 6px) clamp(14px, 1.5vw, 20px);
    background-color: rgba(254, 166, 64, 0.12);
    color: var(--main);
    border-radius: 999px;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.exp-store__title {
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    color: #111;
}

.exp-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: clamp(20px, 2.5vw, 32px) !important;
    grid-auto-rows: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.exp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 20px);
    height: 100%;
    padding: clamp(20px, 2.2vw, 28px);
    padding-left: clamp(22px, 2.4vw, 32px);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.85);
    border-left: 2px solid var(--main);
    border-radius: 6px;
    transition: background-color 0.25s ease, border-color 0.25s ease, border-left-color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, color 0.25s ease;
    overflow: hidden;
}

.exp-card:hover {
    background-color: rgba(254, 166, 64, 0.09);
    border-color: rgba(254, 166, 64, 0.55);
    border-left-color: var(--main);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(254, 166, 64, 0.14);
}

.exp-card__title {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.45;
    margin: 0;
    color: #111;
    word-break: keep-all;
    transition: color 0.25s ease;
}

.exp-card:hover .exp-card__title {
    color: var(--main);
}

.exp-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    transition: border-top-color 0.25s ease;
}

.exp-card:hover .exp-card__meta {
    border-top-color: rgba(254, 166, 64, 0.3);
}

.exp-card__label {
    font-weight: 600;
    color: #888;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.exp-card:hover .exp-card__label {
    color: rgba(210, 110, 20, 0.95);
}

.exp-card__value {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--main);
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.exp-card:hover .exp-card__value {
    color: var(--main);
}

.exp-card__value--free {
    color: #111;
}

.exp-card:hover .exp-card__value--free {
    color: var(--main);
}

.exp-footer {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: clamp(12px, 1.5vw, 20px);
    padding: clamp(14px, 1.6vw, 20px) clamp(18px, 2vw, 26px);
    background-color: rgba(255, 80, 80, 0.06);
    border: 1px solid rgba(255, 80, 80, 0.2);
    border-radius: 6px;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.55;
    font-weight: 700;
    color: #d43b3b;
    word-break: keep-all;
}

.exp-footer i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1em;
}

/*------------------------------------------------------------------------------------------------------
먹거리 안내
---------------------------------------------------------------------------------------------------------*/
.rest-wrap {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(56px, 7vw, 96px);
    padding: clamp(8px, 1vw, 16px) 0 clamp(56px, 7vw, 96px);
}

.rest-yard {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 56px);
}

.rest-yard__title {
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
    text-align: center;
    color: #111;
    position: relative;
    padding-bottom: clamp(28px, 3.5vw, 44px);
    border-bottom: 2px solid #222;
    word-break: keep-all;
}

.rest-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: clamp(20px, 2.5vw, 32px) !important;
    grid-auto-rows: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.rest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    height: 100%;
    padding: clamp(20px, 2.2vw, 30px) clamp(22px, 2.4vw, 32px);
    padding-left: clamp(24px, 2.6vw, 34px);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 3px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    transition: background-color 0.25s ease, border-color 0.25s ease, border-left-color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, color 0.25s ease;
    overflow: hidden;
}

.rest-card:hover {
    background-color: rgba(254, 166, 64, 0.09);
    border-color: rgba(254, 166, 64, 0.45);
    border-left: 3px solid var(--main);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(254, 166, 64, 0.12);
}

.rest-card:hover .rest-card__title {
    color: var(--main);
    border-bottom-color: rgba(254, 166, 64, 0.25);
}

.rest-card__title {
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    color: #111;
    padding-bottom: clamp(12px, 1.4vw, 18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rest-meta {
    display: grid;
    grid-template-columns: minmax(80px, 92px) 1fr;
    gap: clamp(10px, 1.2vw, 16px) clamp(14px, 1.6vw, 22px);
}

.rest-meta__label {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 700;
    color: #555;
    letter-spacing: -0.01em;
    padding-top: 2px;
    text-align: left;
    word-break: keep-all;
    transition: color 0.25s ease;
}

.rest-meta__value {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.7;
    color: #222;
    text-align: left;
    word-break: keep-all;
    transition: color 0.25s ease;
}

.rest-meta__value--price {
    white-space: pre-line;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
    line-height: 1.6;
    text-align: left;
    transition: color 0.25s ease;
}

.rest-card:hover .rest-meta__label {
    color: rgba(210, 110, 20, 0.95);
}

.rest-card:hover .rest-meta__value {
    color: var(--main);
}

.rest-card:hover .rest-meta__value--price {
    color: var(--main);
}

.rest-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5px, 0.6vw, 7px) clamp(12px, 1.3vw, 16px);
    margin: 0 6px 6px 0;
    background-color: rgba(0, 0, 0, 0.035);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 4px;
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    text-align: left;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    word-break: keep-all;
}

.rest-card:hover .rest-chip {
    background-color: rgba(255, 255, 255, 0.75);
    border-color: rgba(254, 166, 64, 0.55);
    color: var(--main);
}

@media all and (max-width: 575px) {
    .rest-meta {
        grid-template-columns: 1fr;
        gap: 4px clamp(10px, 1.2vw, 14px);
    }
    .rest-meta__label {
        padding-top: 0;
    }
    .rest-meta__label + .rest-meta__value {
        padding-bottom: clamp(6px, 0.8vw, 10px);
    }
    .rest-meta__label + .rest-meta__value--price {
        padding-bottom: clamp(6px, 0.8vw, 10px);
    }
}

/*------------------------------------------------------------------------------------------------------
축제 발자취 
---------------------------------------------------------------------------------------------------------*/
.historyWrap .container {width: 100%!important;}
.historyWrap img {max-width: 100%; height: auto;}
.timeline:not(.timeline--horizontal)::before { z-index: 0 !important; }
.timeline__content { padding: clamp(20px, 2.5vw, 40px)!important; text-align: left; }

    /*------------------------------------------
    모달
    ------------------------------------------*/
#thumbBox {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    padding: 5px;
    padding-bottom: 0;
    background: #ccc;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}

@media all and (min-width: 320px) and (max-width: 768px) {
    #thumbBox {
        max-width: 90% !important;
        box-sizing: border-box;
    }
    #thumbBox #thumbImage img {
        max-width: 100%;
        height: auto;
    }
}
#thumbBox .footerbar {
    padding: 5px 0;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
}
#thumbBox #thumbImage {
    background-color: #fff;
}
#thumbLoading {
    padding: 5px;
    position: absolute;
    background-color: #EFEFEF;
    border: 1px solid black;
    visibility: hidden;
    z-index: 1001;
}
.line {
    border-bottom: solid #CCCCCC 1px;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

/*------------------------------------------------------------------------------------------------------
 지난행사 보기 
---------------------------------------------------------------------------------------------------------*/
.post-archive {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 3vw, 36px);
}

.post-archive__years {
        gap: clamp(10px, 1.2vw, 18px) !important;
        padding: 0 0 8px;
        border-bottom: 1px solid rgba(24, 18, 16, 0.10);
        background: transparent;
        box-shadow: none;
}

.post-year-btn {
        position: relative;
        padding: 0.4rem;
        border: 0;
        border-radius: 0;
        background: transparent !important;
        color: rgba(24, 18, 16, 0.46);
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        text-decoration: none;
        box-shadow: none;
        transition: color 0.2s ease, transform 0.2s ease;
}

.post-year-btn::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: var(--main);
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.24s ease;
}

.post-year-btn:hover,
.post-year-btn:focus {
        color: rgba(24, 18, 16, 0.88);
        transform: translateY(-1px);
}

.post-year-btn:hover::after,
.post-year-btn:focus::after {
        transform: scaleX(1);
}

.post-year-btn.is-active {
        color: #151515;
        font-weight: 800;
}

.post-year-btn.is-active::after {
        transform: scaleX(1);
}

.post-archive__body {
        margin-top: clamp(32px, 4vw, 52px) !important;
}

.post-photo-archive {
	display: flex;
	flex-direction: column;
	gap: clamp(38px, 5vw, 64px);
}

.post-photo-archive__intro {
        align-items: flex-start !important;
        --bs-gutter-x: clamp(42px, 5vw, 96px);
}

.post-photo-archive__intro > [class*="col-"] {
        min-width: 0;
}

.post-photo-archive__copy {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
        padding-top: clamp(18px, 2vw, 24px);
        text-align: left;
}

.post-photo-archive__copy::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: clamp(72px, 7vw, 108px);
        height: 2px;
        background: linear-gradient(90deg, rgba(24, 18, 16, 0.9), rgba(24, 18, 16, 0.18));
}

.post-photo-archive__leadVisual {
	position: relative;
        min-height: clamp(320px, 34vw, 460px);
        padding-left: clamp(18px, 2.2vw, 36px);
}

.post-photo-archive__eyebrow {
	display: inline-block;
	/*margin-bottom: 16px;*/
	font-weight:100;
	letter-spacing: 0.4em;
}

.post-photo-archive__title {
        margin: 0 0 18px;
        max-width: 100%;
	color: #151515;
        font-size: clamp(3rem, 5.2vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
        line-height: 1.04;
	word-break: keep-all;
        overflow-wrap: anywhere;
        text-align: left;
}

.post-photo-archive__date {
	/*margin: 16px 0 0;*/
	color: rgba(24, 18, 16, 0.58);
	font-size: clamp(1.2rem, 2.1vw, 1.75rem);
	letter-spacing: -0.02em;
	text-align: left;
}

.post-media-frame {
	margin: 0;
	overflow: hidden;
}

.post-media-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.35s ease;
}

.post-media-frame:hover img {
	transform: scale(1.04);
}

.post-media-frame {
        border: 10px solid rgba(255, 255, 255, 0.95);
        background: #ffffff;
}

.post-media-frame--lead {
        transform: none;
        width: 100%;
        max-width: 560px;
        margin-left: auto;
}

.post-gallery-section {
        display: flex;
        flex-direction: column;
        gap: 80px;
}

.post-gallery-section__head {
        display: flex;
        flex-direction: column;
        gap: 8px;
}

.post-gallery-section__eyebrow {
        margin: 0;
        color: rgba(24, 18, 16, 0.46);
        font-size: 0.9rem;
	font-weight: 800;
        letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-gallery-section__title {
        margin: 0;
        color: #151515;
        font-size: clamp(2rem, 2.5vw, 2.25rem);
        font-weight: 700;
        line-height: 1.3;
        word-break: keep-all;
}

.post-thumb-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: flex-start;
}

.post-thumb {
	position: relative;
        display: block;
        flex: 0 0 180px;
        width: 180px;
        height: 120px;
        padding: 0;
        border: 1px solid rgba(24, 18, 16, 0.10);
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
        overflow: hidden;
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        text-align: left;
}

.post-thumb img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.post-thumb:hover,
.post-thumb:focus-visible {
        transform: translateY(-2px);
        border-color: rgba(24, 18, 16, 0.18);
        box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}

.post-gallery-section--ads {
        margin-top: clamp(72px, 8vw, 120px);
        gap: 80px;
}

.post-ad-grid {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(18px, 2vw, 28px);
        align-items: flex-start;
        justify-content: flex-start;
        /*justify-content: center;*/
}

.post-ad-card {
        margin: 0;
        flex: 0 0 250px;
        width: 250px;
        overflow: hidden;
}

.post-ad-card img {
        display: block;
        width: 100%;
        height: auto;
}

.post-lightbox .modal-dialog {
        max-width: min(92vw, 1280px);
}

.post-lightbox__content {
        position: relative;
        padding: 20px;
        border: 0;
        border-radius: 0;
        background: rgba(10, 10, 10, 0.96);
        color: #ffffff;
}

.post-lightbox__close {
        position: absolute;
        right: 18px;
        top: 18px;
        z-index: 2;
        filter: invert(1) grayscale(1);
        opacity: 0.88;
}

.post-lightbox__stage {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr) 64px;
        align-items: center;
        gap: 12px;
        min-height: min(74vh, 860px);
}

.post-lightbox__figure {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
}

.post-lightbox__figure img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 74vh;
        height: auto;
        object-fit: contain;
}

.post-lightbox__nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.post-lightbox__nav:hover,
.post-lightbox__nav:focus-visible {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.36);
        transform: translateY(-1px);
}

.post-lightbox__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 14px;
}

.post-lightbox__caption,
.post-lightbox__count {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.96rem;
        font-weight: 600;
}

@media (max-width: 991.98px) {
        .post-photo-archive__leadVisual {
                padding-left: 0;
	}
}

@media (max-width: 767.98px) {
        .post-archive__years {
                padding: 0 0 14px;
                gap: 12px !important;
        }

        .post-year-btn {
                flex: 0 0 auto;
                padding: 0.35rem 0;
                font-size: 0.94rem;
        }

        .post-year-btn::after {
                bottom: -8px;
        }

        .post-photo-archive__copy {
                padding-top: 14px;
        }

        .post-photo-archive__copy::before {
                width: 56px;
        }

        .post-photo-archive__leadVisual {
                padding-left: 0;
        }

        .post-thumb-grid {
                gap: 12px;
        }

        .post-thumb {
                flex: 1 1 calc(50% - 6px);
                width: calc(50% - 6px);
                height: auto;
                aspect-ratio: 3 / 2;
        }

        .post-gallery-section--ads {
                margin-top: clamp(48px, 10vw, 72px);
        }

        .post-ad-grid {
                justify-content: center;
        }

        .post-ad-card {
                flex: 0 0 250px;
                width: 250px;
        }

        .post-lightbox__content {
                padding: 16px;
        }

        .post-lightbox__stage {
                grid-template-columns: 44px minmax(0, 1fr) 44px;
                gap: 8px;
                min-height: 58vh;
        }

        .post-lightbox__nav {
                width: 40px;
                height: 40px;
        }

        .post-lightbox__footer {
                flex-direction: column;
                align-items: flex-start;
        }
}

/*------------------------------------------------------------------------------------------------------
홍보 동영상
---------------------------------------------------------------------------------------------------------*/
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 42.85%; /* PC: 상하 검은 여백을 없앤 비율 (21:9) */
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding-bottom: 56.25%; /* 모바일: 기존의 높이감 있는 비율 (16:9) */
        border-radius: 12px;
    }
}

/*------------------------------------------------------------------------------------------------------
축제백서
---------------------------------------------------------------------------------------------------------*/
.whitepaper-wrap {
    width: 100%;
    padding: 0 20px;
    color: #111111;
    word-break: keep-all;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whitepaper-header {
    width: 100%;
    margin-bottom: clamp(40px, 5vw, 68px);
    text-align: center;
}

.whitepaper-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding-bottom: clamp(28px, 3.5vw, 48px);
    box-sizing: border-box;

    font-size: clamp(48px, 10vw, 150px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--main, #111111);
}

/* 1. '어제와 오늘' 위->아래 훑으며 테두리로 변하는 스캔 착시 연출 */
.whitepaper-title .stroke-text {
    display: inline-block;
    -webkit-text-stroke: 2.5px var(--main, #111111);
    text-stroke: 2.5px var(--main, #111111);
    
    /* 텍스트 내부 채움을 가로지르는 수직 그래디언트 */
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        transparent 40%, 
        var(--main, #111111) 50%, 
        var(--main, #111111) 100%
    );
    background-size: 100% 350%;
    background-position: 0 100%; /* 초기 상태: 내부 색상 전체 채워짐 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* 1.4초 동안 위에서 아래로 스캔하며 테두리로 변환 */
    animation: verticalScan 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* '그리고 내일' 기본 설정 */
.whitepaper-title .fill-text {
    display: inline-block;
    color: var(--main, #111111);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* 2. 하단 밑줄 확장 연출 */
.whitepaper-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 5px;
    background-color: #111111;
    animation: expandLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

/* 본문 영역 */
.whitepaper-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* 3. 서브텍스트 & 설명글 등장 */
.whitepaper-body .sub-text {
    display: block;
    letter-spacing: -0.02em;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1.6s forwards;
}

.whitepaper-desc {
    width: 100%;
    max-width: 520px;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.6;
    font-weight: 500;
    color: #444444;
    margin: clamp(20px, 2.5vw, 36px) 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1.75s forwards;
}

/* 4. 백서보기 버튼 등장 */
.whitepaper-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
    max-width: 350px;
    
    padding: 18px 28px;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 800;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    
    border: 2.5px solid #111111;
    background-color: transparent;
    transition: background-color 0.25s ease, color 0.25s ease;
    
    opacity: 0;
    transform: scale(0.92);
    animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s forwards;
}

.whitepaper-link svg {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.whitepaper-link:hover {
    background-color: var(--main, #111111);
    color: #ffffff;
}

.whitepaper-link:hover svg {
    transform: translateX(8px);
}

    /*--------------------
    키프레임 (Keyframes)
    --------------------*/

/* 수직 스캔: 350% 크기의 수직 배경을 Y축으로 아래로 밀어내어 위에서부터 지워지는 착시 연출 */
@keyframes verticalScan {
    0% {
        background-position: 0 100%;
    }
    100% {
        background-position: 0 0%;
    }
}

/* 밑줄 확장 */
@keyframes expandLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

/* 페이드인 슬라이드 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 버튼 등장 */
@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 모바일 분기 */
@media (max-width: 768px) {
    .whitepaper-title .stroke-text {
        -webkit-text-stroke: 1.5px var(--main, #111111);
        text-stroke: 1.5px var(--main, #111111);
    }
    
    .whitepaper-title::after {
        height: 3.5px;
    }

    .whitepaper-link {
        border-width: 2px;
    }
}

/*------------------------------------------------------------------------------------------------------
이천 쌀 이야기
---------------------------------------------------------------------------------------------------------*/
.rice-wrap {
    margin: 0 auto;
    padding: clamp(30px, 4vw, 60px) 10px 0;
    color: #111;
    word-break: keep-all;
}

.rice-header {
    margin-bottom: clamp(40px, 5vw, 64px);
}

.rice-header .main-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.rice-header .address-text {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    color: #444;
    line-height: 1.4;
    margin: 0;
}
.rice-guide-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 100px);
    border-top: 2px solid currentColor;
    padding-top: clamp(48px, 6vw, 80px);
}

.rice-header-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.riceguide-title {
    font-size: clamp(26px, 2.85vw, 40px);
    font-weight: 100;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1;
}

.riceguide-sub {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    opacity: 0.6;
    letter-spacing: -0.02em;
}

.riceguide-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 60px);
}

@media (min-width: 992px) {
    .riceguide-grid-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.riceguide-item {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid currentColor;
}

.riceguide-item .rice-route-label {
    display: block;
    margin-bottom: clamp(32px, 4vw, 48px);
    /*opacity: 0.7;*/
}

.riceguide-item .rice_detail {
    line-height: 1.6;
    margin: 0;
    text-align: left;
    word-break: keep-all;
}

.riceguide-item .rice_detail .arrow {
    display: inline-block;
    font-weight: 300;
    margin: 0 4px;
    opacity: 0.5;
}
.ricenotice-box {
    position: relative;
    padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 32px);
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background-color: rgba(0, 0, 0, 0.02);
}

.ricenotice-box .rice_notice {
    margin: 0;
    line-height: 1.6; word-break: keep-all; letter-spacing: -0.01em;
}

    /*----------------------
    이천쌀의 유래
    ----------------------*/
.rice-intro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(28px, 4vw, 48px);
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
}
@media (min-width: 768px) {
    .rice-intro-card {
        flex-direction: row;
        text-align: left;
    }
}

.rice-intro-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(90px, 10vw, 130px);
}

.rice-intro-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.rice-intro-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rice-intro-sub {
    /*font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 700;*/
    color: var(--main);
    margin: 0;
    letter-spacing: -0.02em;
}
.rice-intro-title {
    font-size: var(--fs-48);
    font-weight: 300;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.rice-intro-title strong {
    font-weight: 900;
    color: #111;
}

/*------------------------------------------------------------------------------------------------------
이천 쌀 구입처 리스트
---------------------------------------------------------------------------------------------------------*/
.rice-store-desc {
    color: #555;
    margin: 0 0 clamp(24px, 3vw, 36px) 0;
    word-break: keep-all;
}

.rice-store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .rice-store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.rice-store-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: clamp(20px, 2.5vw, 24px);
    background-color: #fbfbfb;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rice-store-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

@media (min-width: 576px) {
    .rice-store-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.rice-store-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rice-store-name {
    color: #111;
}

.rice-store-link {
    color: #666;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.rice-store-link:hover {
    color: var(--main, #000);
    text-decoration: underline;
}

/* 전화번호 버튼 */
.rice-store-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.rice-store-tel:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
    color: #111;
}

/*------------------------------------------------------------------------------------------------------
이천관광
---------------------------------------------------------------------------------------------------------*/
.product-archive {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 100px);
    margin-top: clamp(40px, 6vw, 80px);
    border-top: 2px solid currentColor;
    padding-top: clamp(48px, 6vw, 80px);
}

.product-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 48px);
    padding-bottom: clamp(48px, 6vw, 80px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
    .product-item {
        grid-template-columns: 320px 1fr;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .product-item {
        grid-template-columns: 380px 1fr;
    }
}

.product-media {
    width: 100%;
}

.product-media .post-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #f8f8f8;
}

.product-media .post-media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.product-item:hover .post-media-frame img {
    transform: scale(1.04);
}

.product-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    word-break: keep-all;
}

.product-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 clamp(16px, 2vw, 24px) 0;
    color: #111111;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
}

.product-desc {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.75;
    font-weight: 500;
    color: #333333;
    margin: 0;
    word-break: keep-all;
}

.product-contact-box {
    list-style: none;
    margin: 0;
    padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 28px);
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background-color: rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-contact-box li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: clamp(14px, 1.4vw, 16px);
    word-break: keep-all;
}

.contact-label {
    font-weight: 700;
    color: #111111;
    opacity: 0.85;
}

.contact-val {
    font-weight: 800;
    color: currentColor;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.contact-val:hover {
    opacity: 0.6;
}

.match-card-box {
    padding: clamp(16px, 2vw, 24px) clamp(20px, 2.5vw, 28px);
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    background-color: rgba(0, 0, 0, 0.02);
}

.match-title {
    display: block;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--main);
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.match-card-title {
    display: block;
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111;
    background-color: rgba(0, 0, 0, 0.04);
    border-bottom: 2px solid var(--main);
    padding: 10px 12px;
    margin: 0 0 clamp(14px, 2vw, 20px);
    text-align: center;
}

.schedule_wrap.profes_table,
.schedule-wrap.profes_table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

.schedule_wrap.profes_table table,
.schedule-wrap.profes_table table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    text-align: center;
    word-break: keep-all;
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .schedule_wrap.profes_table table,
    .schedule-wrap.profes_table table {
        min-width: 720px;
    }
}

.schedule_wrap.profes_table th,
.schedule_wrap.profes_table td {
    padding: clamp(10px, 1.2vw, 14px) 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    vertical-align: middle;
    font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 767.98px) {
    .schedule_wrap.profes_table,
    .schedule-wrap.profes_table {
        padding-bottom: 6px;
    }
    .schedule_wrap.profes_table table,
    .schedule-wrap.profes_table table {
        min-width: 560px !important;
    }
}