@charset "utf-8";

/* 업체별 프로모션 스타일 */
.sub_container.section_8 {
  padding: 70px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.location_title {
  color: #e84341;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1em;
  margin: 0;
  padding-bottom: 8px;
  text-align: center;
}

.home_desc {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  text-align: center;
  margin-bottom: 50px;
}

.promo_table_container {
  position: relative;
  padding: 0 15px;
}


/* 프로모션 테이블 스타일 */
.promo_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo_table .promo_no {
  width: 80px;
}

.promo_table .promo_name {
  width: 250px;
}

.promo_table .promo_info {
  width: 150px;
}

.promo_table .promo_discount {
  width: 150px;
}

.promo_table .promo_etc {
  width: auto;
}

.promo_table .tbl-tit {
  background-color: #e84341;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #d73e41;
}

.promo_table .tbl-content {
  padding: 12px 10px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  vertical-align: middle;
}

.promo_table tbody tr:nth-child(even) .tbl-content {
  background-color: #f8f9fa;
}

.text-left {
  text-align: left !important;
}

.tbl-name {
  text-align: center;
  color: #e84341;
  font-weight: 600;
}

/* 모바일 테이블 */
.promo_table_mo {
  display: none;
}

/* 모바일 최적화 */
@media screen and (max-width: 1000px) {
  .sub_container.section_8 {
    padding: 50px 0;
  }

  .promo_table_container {
    padding: 0 10px;
  }

  .promo_table_pc {
    display: none;
  }

  .promo_table_mo {
    display: inline-table;
    width: 100% !important;
    table-layout: fixed !important;
  }

  .promo_table .tbl-tit {
    font-size: 14px !important;
  }

  .promo_table .tbl-content {
    font-size: 13px;
  }

  .cal tbody tr th {
    width: 10%;
  }

  .promo_table .promo_name {
    width: 80px !important;
  }

  .promo_table .promo_info {
    width: 80px !important;
  }

  .promo_table .promo_etc {
    width: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .sub_container.section_8 {
    padding: 20px 0;
  }

  .location_title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .home_desc {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }

  .promo_table_container {
    padding: 0 8px;
  }

  .promo_table .tbl-tit {
    padding: 8px 6px;
    font-size: 12px !important;
  }

  .promo_table .tbl-content {
    padding: 6px 4px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .sub_container.section_8 {
    padding: 20px 0;
  }

  .promo_table_container {
    padding: 0 5px;
  }

  .promo_table .tbl-tit {
    padding: 8px 6px;
    font-size: 12px !important;
  }

  .promo_table .tbl-content {
    padding: 6px 4px;
    font-size: 11px;
  }
}