.title-bar{
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 10px;
  background: #EF5646;
  font-family: "Noto Sans KR", sans-serif;
}

.title-bar__logo img {
  width: 85px;
  display: block;
}

.title-bar__text{
  margin-left: 8px;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: -0.5px;
  line-height: 1.3;
  white-space: nowrap;
}


.date-nav-wrapper {
  display: flex;
  align-items: center;
  background: #111;
  padding: 3px 0px;
  overflow: hidden;
}

.date-nav {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  flex: 1;
}

.date-nav::-webkit-scrollbar {
  display: none;
}

.date-item {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex: 0 0 auto;
  padding: 2px 7px;
  margin: 0 2px;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 600;
}

.date-item .weekday {
  font-size: 12px;
  opacity: 0.7;
}

.date-item.is-active {
  background: #FF5340;
  color: #fff;
}

.date-calendar {
  position: relative;
  width: 50px;
  flex-shrink: 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

#hiddenDatepicker {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
  height: 1px;
}


/* ÇÏ´Ü ¸Þ´º°¡ ³»¿ë °¡¸®Áö ¾Ê°Ô: (ÇÊ¿ä ½Ã) body¿¡ ¿©¹é */
html, body { 
	padding-bottom: 0px; 
	font-family: "Noto Sans KR";
	font-weight: 400;
	font-style: normal;
	letter-spacing:-1px;
}


/* ÇÏ´Ü °íÁ¤ ¹Ù */
.bottom-nav{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 62px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  z-index: 9999;

  display: -webkit-box;      /* ±¸Çü ¾Èµå·ÎÀÌµå ´ëºñ */
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  /* ±âº»Àº º¸ÀÓ */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: transform .25s ease;
}

/* ¼û±è »óÅÂ(¾Æ·¡·Î ³»·Á°¡¸ç »ç¶óÁü) */
.bottom-nav.is-hidden{
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.bottom-nav__item{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  text-align: center;
  text-decoration: none !important;

  color: #8a8a8a;
  padding: 6px 0;
  line-height: 1.1;
}

.bottom-nav__icon{
  display: block;
  font-size: 20px;
  margin: 0 auto 4px;
  color: #8a8a8a;
}

.bottom-nav__label{
  display: block;
  font-size: 11px;
  color: #8a8a8a;
}

/* È°¼º »óÅÂ(¿øÇÏ¸é »ö¸¸ »ìÂ¦ ÁøÇÏ°Ô) */
.bottom-nav__item.is-active .bottom-nav__icon,
.bottom-nav__item.is-active .bottom-nav__label{
  color: #FF5340;
  font-weight: 600;
}

/* ±âº»(¸ð¹ÙÀÏ Æ÷ÇÔ): 100% */
.app-shell { width: 100%; }
.app-screen { width: 100%; min-height: 100vh; background: #fff; }

/* PC¿¡¼­¸¸: Áß¾Ó Æø, À§/¾Æ·¡ µü ºÙ°Ô */
@media (min-width: 768px) {

  html, body { height: 100%; }
  body {
    background: #f3f3f3;  /* ¹Ù±ù ¹è°æ */
    margin: 0;
    overflow: hidden;     /* ¹Ù±ù(body) ½ºÅ©·Ñ Á¦°Å */
  }

  .app-shell {
    height: 100vh;        /* È­¸é ³ôÀÌ ²Ë */
    display: flex;
    justify-content: center; /* °¡·Î Áß¾Ó */
    align-items: stretch;    /* ¼¼·Î´Â ´Ã·Á¼­ À§/¾Æ·¡ µü ºÙ°Ô */
    padding: 0;              /* À§¾Æ·¡ ¿©¹é Á¦°Å */
    overflow: hidden;
  }

  .app-screen {
    position: relative;
    width: 450px;        /* ¿øÇÏ´Â Æø */
    height: 100vh;       /* À§/¾Æ·¡ µü ºÙÀ½ */
    overflow-y: auto;    /* ¾È¿¡¼­¸¸ ½ºÅ©·Ñ */
    background: #fff;

    /* Æù ´À³¦ Á¦°Å */
    border: 0;
    border-radius: 0;
    box-shadow: none;

    /* ÇÏ´Ü¹Ù °ø°£ */
    padding-bottom: 62px;

    -webkit-overflow-scrolling: touch;
  }

  /* ÇÏ´Ü ¸Þ´º´Â app-screen ¾È ¹Ù´Ú¿¡ ºÙÀÓ */
  .bottom-nav {
    position: fixed;          /* absolute -> fixed */
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;

    width: 430px;             /* app-screen Æø°ú µ¿ÀÏ */
    height: 62px;

    background: #fff;
    border-top: 1px solid #e6e6e6;
    z-index: 9999;
  }
}

.navbar-tight { margin-bottom: 0 !important; }

/* ============================= */
/* Ä«µå ¹Ú½º */
/* ============================= */

.oi_box {
  position: relative;
  border-radius: 8px;
  padding: 10px 10px 3px 10px;
  margin: 10px;
  background: #eee;
  overflow: hidden;
}

.oi_empty {
  text-align: center;
  font-size: 15px;
  color: #666;
  padding: 40px 0;
}

/* ============================= */
/* ¹è°æ ¼øÀ§ ¼ýÀÚ */
/* ============================= */

.oi_rank_bg {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-size: 180px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -20px;
  line-height: 1;
  color: #d5d5d5;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ============================= */
/* ¸Þ´Þ */
/* ============================= */

.oi_medal {
  position: absolute;
  top: -5px;
  right: 10px;
  width: 40px;
  z-index: 10;
}

/* ============================= */
/* 2ÄÃ·³ ·¹ÀÌ¾Æ¿ô */
/* ============================= */

.oi_row {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 5;
}

/* ¿ÞÂÊ 30% */
.oi_left {
  width: 30%;
  text-align: center;
}

/* ¿À¸¥ÂÊ 70% */
.oi_right {
  width: 70%;
  text-align: left;
  padding-left: 15px;
  box-sizing: border-box;
}

/* ============================= */
/* ½æ³×ÀÏ */
/* ============================= */

.oi_thumb img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* ============================= */
/* ÁÖ¹®Áö¼ö (ÇÑ ÁÙ ±¸¼º) */
/* ============================= */

.oi_index {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.oi_index_label {
  font-size: 10px;
  color: #666;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
}

.oi_index_value {
  font-family: 'Pretendard', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FF5340;
  line-height: 1;
  display: inline-block;
}


/* ============================= */
/* ¿À¸¥ÂÊ Á¤º¸ */
/* ============================= */

.oi_meta {
  font-size: 12px;
  color: #666;
  margin-top: 3px;
  margin-left: -4px;
}

.oi_channel {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;

  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.oi_brand {
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
  line-height: 1;
}

/* TV¼îÇÎ */
.oi_channel_live {
  background: #FF5340;
}

/* ÇÃ·¯½º¼¥ */
.oi_channel_data {
  background: #7BC96F;
}

.oi_time {
  font-size: 13px;
  color: #888;
  margin: 8px 0px 4px -4px;
}

.oi_title {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0px 6px -4px;
  min-height: 2.8em;
  line-height: 1.3;
}

.oi_price {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  text-align: right;
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
}




.ad_sub_text {
	padding:5 10 5 10px;
	letter-spacing:-1px;
	font-weight:normal;
	line-height:15px;
	font-size:9pt;
	color: gray;
	text-align:center;
	background-color:#EDEEF0;
	font-family: "Noto Sans KR";
}

.ad_box {
	background-color:#EDEEF0;
	padding:15px;
	text-align:center;
	color:#666;
	font-weight:bold;
}


a {color:white; text-decoration:none;}
a:link{color:white; text-decoration:none;}
a:visited{color:white; text-decoration:none;}
a:hover{color:white; text-decoration:none;}
a:active{color:white; text-decoration:none;}

.weekly-nav {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 5px;
}

.weekly-btn {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #555; 
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.weekly-btn:hover {
  background: #FF5340; 
  border-color: #FF5340;
  color: #fff;
}

.weekly-period {
  font-size: 17px;
  font-weight: 600;
}

.card_box {
	font-size:13px;
	padding:5px 10px 5px 10px;
	font-weight:normal;
	color: #fff;
	text-align:left;
	border-radius:6px;
	margin:10px;
	overflow: hidden;
	letter-spacing:-0.5px;
}

.seo-hidden {
    position:absolute;
    left:-9999px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}