/* ============================
   ¸ð¹ÙÀÏ ¸®½ºÆ® ½ºÅ¸ÀÏ 
   ============================ */
.expert-column-wrap {
  padding: 20px 0px 40px;
}
.ex-list-menu {
  display: flex;
  flex-direction: column;
  position: relative;
}
.ex-list-menu h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 140%;
  color: var(--black);
}
.section-title-wrap {
  margin: 0 16px;
  border-bottom: 2px solid var(--primary);
}
.section-title {
  margin-bottom: 6px;
}
.notsubcate-title {
  margin: 0px 16px 0px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.scroll-wrapper {
  position: relative;
}
.scroll-menu {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 4px;
}
.scroll-menu::-webkit-scrollbar {
  display: none;
}
.scroll-menu a {
  font-weight: 500;
  color: var(--grey-5);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  font-size: 16px;
  line-height: 140%;
  padding: 8px 12px;
}
.scroll-menu a:first-child {
  padding-left: 0px;
}
.scroll-menu a:last-child {
  padding-right: 40px;
}
.scroll-menu a:hover {
  color: var(--primary);
  font-weight: 600;
}
.scroll-menu a.active {
  color: var(--primary);
  font-weight: 600;
}
/* ±×¶óµ¥ÀÌ¼Ç È¿°ú */
.scroll-gradient {
  position: absolute;
  top: 0;
  right: 24px;
  width: 16px;
  height: 100%;
  background: linear-gradient(to left, white, transparent);
  pointer-events: none;
  z-index: 1;
}
/* ÆîÃÄÁö´Â ¸Þ´º */
.expanded-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 4px;
  padding: 0px 16px 24px;
  background-color: var(--white);
  box-sizing: border-box;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 20px 20px;
}
.expanded-menu a {
  background: var(--grey-f8);
  padding-left: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  color: var(--grey-5);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  height: 46px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.expanded-menu a:hover {
  background: var(--primary);
  color: var(--white);
}
.expanded-menu a.active {
  background: var(--primary);
  color: var(--white);
}
/* È­»ìÇ¥ ¹öÆ° */
.scroll-arrow {
  position: absolute;
  right: -1px;
  top: 0;
  width: 25px;
  height: 38px;
  border: none;
  font-size: 16px;
  color: var(--grey-8);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  background: var(--white);
}
.scroll-arrow.active img {
  content: url('https://m.health.chosun.com/amirang/img/sub_gnb_close.svg');
}
#expandedMenu {
  display: none;
}
#expandedMenu.show {
  display: grid;
  width: 100%;
  position: absolute;
  top: 89px;
  left: 0;
  z-index: 9;
  margin-top: -3px;
}
.dropdown {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--grey-8);
}
.list-contents-wrap {
  display: flex;
  flex-direction: column;
  margin: 0 16px;
}
.main-card-wrap {}
.main-card-wrap a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.main-card {
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 10px;
  aspect-ratio: 361 / 239.46;
}
.main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.mc-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.mc-title .badge {
  background: var(--primary);
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 160%;
  color: var(--white);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  height: 32px;
  border-radius: 4px;
}
.mc-title .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: var(--black);
}
.main-card-wrap .desc {
  color: var(--grey-8);
  font-size: 16px;
  line-height: 1.4;
}
.articles {
  display: flex;
  flex-direction: column;
}
.article-item {
  border-bottom: 1px solid var(--grey-d9);
}
.article-item:first-child {
  border-top: 1px solid var(--black);
}
.article-img {
  flex-shrink: 0;
  width: 132px;
  aspect-ratio: 132 / 87.7; /* °íÁ¤ ºñÀ² À¯Áö */
  overflow: hidden;
  box-sizing: border-box;
  border: 0.85px solid rgba(17, 17, 17, 0.1);
  border-radius: 4px;
  background: #eee;
  display: block; /* Áß¿ä */
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.article-item a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 16px 0 16px;
  gap: 12px;
  width: 100%;
}
.article-item .arti_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-item .arti_info .txt_badge {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: var(--primary);
}
.article-item .arti_info .txt_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 142%;
  color: var(--black);
}
.expert-column-wrap .btn-more {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  border: none;
  background: none;
  height: 24px;
  font-weight: 600;
  font-size: 17px;
  line-height: 142%;
  color: var(--black);
  margin-top: 20px;
}
/*********************************
 ============ÁÖ°£ ¾Ï ¼Ò½Ä =========
 *********************************/
.news-container-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
  margin: 16px 16px 0;
}
#listResultArea {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-container {
  border: 1px solid var(--grey-d9);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 16px;
}
.news-container:first-child {
  border: 1px solid var(--grey-d9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-container:hover {
  border: 1px solid var(--grey-d9);
  background: var(--primary-10);
}
.news-container:first-child:hover {
  border: 1px solid var(--grey-d9);
  background: none;
}
.week-news-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 20px 16px;
}
.week-news-header.first {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 23px;
  cursor: pointer;
  padding: 24px 24px 20px;
}
.week-day {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.week-day .week-date {
  height: 40px;
  font-weight: 800;
  font-size: 28px;
  line-height: 144%;
  color: var(--black);
}
.week-day .news-date {
  height: 19px;
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: var(--black);
}
.week-list-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.week-list-title .news-vol {
  height: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--primary);
}
.week-list-title .w-news-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.news-container .news-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--grey-ea);
  padding-top: 16px;
  margin: 0 24px;
  padding: 16px 0 24px 0;
}
.news-item a {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 0px 0;
  gap: 8px;
}
.news-item a::before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 14px);
  margin-top: 14px;
  background: var(--grey-ea);
  left: 4px;
  top: 0;
}
.news-icon {
  min-width: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  transition: background 0.3s;
}
.news-item a p {
  width: 100%;
  background: var(--grey-f8);
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--grey-5);
  font-size: 16px;
  font-weight: 600;
}
.news-item a:hover p {
  background: var(--primary);
  color: var(--white);
}
.news-item a:hover p:hover {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.news-container .news-list .news-item:nth-child(2) a p {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.news-container .news-list .news-item:nth-child(2) .news-icon {
  background: var(--primary);
}
.news-item a:hover .news-icon {
  background: var(--primary) !important;
}
.news-item.selected .news-icon {
  background: var(--primary);
}
/********************** ±×·¡ÇÈ ´º½º ¸®½ºÆ® ****************************/
.graphic-list-wrap {
  padding: 20px 0px 40px;
}
.g-list-menu {
  display: flex;
  flex-direction: column;
  position: relative;
}
.g-list-menu h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 140%;
  color: var(--black);
  margin-bottom: 10px;
}
.g-list-menu .scroll-menu {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 10.5px;
}
.g-list-menu .scroll-menu a {
  font-weight: 500;
  color: var(--grey-5);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  font-size: 16px;
  line-height: 140%;
  padding: 4px 12px;
}
.g-list-menu .scroll-menu a.active {
  color: var(--primary);
  font-weight: 600;
}
.g-list-menu .scroll-menu a:first-child {
  padding-left: 0px;
}
.graphic-list-wrap .btn-more {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  border: none;
  background: none;
  height: 24px;
  font-weight: 600;
  font-size: 17px;
  line-height: 142%;
  color: var(--black);
  margin-top: 20px;
}
.gnews-list {
  margin: 16px 16px;
}
.gnews-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gnews-list .notecard {
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--black-10-opt);
  border-radius: 10px;
}
.gnews-list .notecard a {
  display: block;
  width: 100%;
}
.gn-image {
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--black-10-opt);
  width: 100%;
  aspect-ratio: 407 / 270;
  overflow: hidden;
  position: relative;
}
.gn-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gnews-list .notecard .gn-content {
  box-sizing: border-box;
  padding: 16px 20px;
}
.gnews-list .notecard .gn-content .gnews-header {
  font-size: 18px;
}
/* =============================
   ´º½º·¹ÅÍ_ ½ÅÃ»ÇÏ±â ÆäÀÌÁö ½ºÅ¸ÀÏ ½ÃÀÛ 
   ============================= */
.newslet-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 4px;
}
.newslet-menu a {
    font-weight: 500;
    color: var(--grey-5);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    font-size: 16px;
    line-height: 140%;
    padding: 8px 12px;
}
.newslet-menu a.active {
    color: var(--primary);
    font-weight: 600;
}
.newslet-menu a:first-child {
    padding-left: 0px;
}
.newsletter-page {
  margin: 16px 16px 0;
}
.newsletter-hero {
  background: url('https://m.health.chosun.com/amirang/img/m_nl_visual01.jpg') no-repeat center/cover;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: left;
  color: var(--white);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 280px;
  box-sizing: border-box;
  gap: 12px;
}
.newsletter-hero .nl-txt-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  gap: 8px;
}
.newsletter-hero .nl-txt-wrap .nl-txt {
  color: var(--white);
  display: flex;
  justify-content: center;
  padding: 4px 20px;
  background: #5AA642;
  border-radius: 50px;
  width: 156px;
  height: 28px;
}
.newsletter-hero .nl-txt-wrap .nl-txt p {
  font-weight: 700;
  font-size: 14px;
  line-height: 145%;
}
.newsletter-hero div.nl-title h1 {
  font-weight: 800;
  font-size: 26px;
  line-height: 140%;
}
.newsletter-hero span.nl-des {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
}
.newsletter-intro {
  text-align: center;
  margin: 40px 0 28px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-intro h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
}
.newsletter-intro p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--grey-8);
}
.newsletter-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-3 {
  position: relative;
  background: var(--grey-f8);
  border-radius: 10px;
  padding: 28px 24px;
  overflow: hidden;
  height: 176px;
}

.card-3 .keyword {
	display: inline-block; 
	font-weight: 500;
    font-size: 12px;
    box-sizing: border-box;
    padding: 4px 10px;
    border: 0.9px solid var(--grey-b);
    border-radius: 50px;
	height: 25px;
	line-height: 135%;
}
.newsletter-cards .card-3 p {
    line-height: 140%;
    color: var(--grey-5);
}
.card-3 h3 {
  font-weight: 700;
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--black);
}
.card-3 p.card-txt-des {
  font-weight: 500;
  font-size: 14px;
  color: var(--grey-8);
}
.card-3::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 30px;
  width: 125px;
  height: 115px;
  background-repeat: no-repeat;
  background-size: contain;
}
/* °¢°¢ÀÇ Ä«µåº° ÀÌ¹ÌÁö ¹è°æ */
.card-3:nth-of-type(1)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/01interview_obj_m.png');
}
.card-3:nth-of-type(2)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/02column_obj_m.png');
}
.card-3:nth-of-type(3)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/03food_obj_m.png');
}
.subscribe-section {
  background-color: var(--bg-secondary);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.subscibe-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.subscibe-top::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 82px;
  height: 60px;
  background-image: url('https://m.health.chosun.com/amirang/img/subscribe_mail_m.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.subscibe-title {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 16px;
}
.subscibe-title h2 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 140%;
}
.subscibe-title h2 span {
  display: block;
  color: var(--primary);
  font-weight: 700
}
.subscribe_txt {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 140%;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
	align-items: center;
  gap: 8px;
}
.textfield-input {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  border: 0px;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  height: 47px;
}
.newslet-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
	text-align: center;
	width: 100%;
}
.newslet-btn:hover {
 background-color: var(--primary);
}
.newslet-btn h3 {
	 font-size: 16px;
	 font-weight: 700;
	text-align: center;
}
.newslet-btn .txtBtn {
	font-size: 15px;
	font-weight: 300;
}
.subscribe-agree {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.error-message {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 4px;
}
.hidden {
  display: none;
}
.subscribe-image {
  margin-top: 20px;
}
.subscribe-image img {
  width: 48px;
  height: auto;
}
/* Ã¼Å©¹Ú½º ½ºÅ¸ÀÏ */
.subscribe-section input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  border: 1px solid var(--grey-8);
  margin: 0px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Ã¼Å©µÇ¾úÀ» ¶§ ½ºÅ¸ÀÏ */
.subscribe-section input[type="checkbox"]:checked {
  background-color: var(--primary);
}
/* Ã¼Å©¹Ú½º ³»ºÎ ±âº» Ã¼Å© ¸ð¾ç ¼û±â±â */
.subscribe-section input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.subscribe-section .subscribe-agree {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--grey-8);
	display: flex;
	align-items: center;
	gap:8px;
	height: 23px;
	text-align: left;
	width: 100%;
}
/* ¿¡·¯ ¸Þ½ÃÁö ¼û±è Ã³¸®¿ë Å¬·¡½º */
.hidden {
  display: none !important;
}

/* ¿¡·¯ ¸Þ½ÃÁö °øÅë ½ºÅ¸ÀÏ */
.subscribe-section .error-message {
	display: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: var(--negative);
}
.subscribe-agree .pri-agree {	
	font-weight: 500;
	font-size: 12px;
	line-height: 142%;
	color: var(--grey-8);
}
.subscribe-agree .pri-agree .pri-agree-l {
	font-weight: 700;
	font-size: 12px;
	line-height: 142%;
	text-decoration-line: underline;
	color: var(--grey-8);
}

/* =============================
   ´º½º·¹ÅÍ_ »ç¿¬ Á¦º¸ÇÏ±â ÆäÀÌÁö ½ºÅ¸ÀÏ ½ÃÀÛ 
   ============================= */
.newsletter-story {
	 background: url('https://m.health.chosun.com/amirang/img/m_nl_visual02.jpg') no-repeat center/cover;
	  border-radius: 20px;
	  padding: 32px 0px 0px 20px;
	  text-align: left;
	  color: var(--white);
	  position: relative;
	display: flex;
	justify-content:space-between;
	align-items: flex-start;
	flex-direction: column;
	height: 280px;
	box-sizing: border-box;
	gap:40px;	
}
.newsletter-story div.nl-txt-wrap {
	display: flex;
	flex-direction: column;
	gap:8px;
}
.newsletter-story div.nl-txt p {
	font-weight: 600;
	font-size: 26px;
	line-height: 140%;
}
.newsletter-story div.nl-title {
	display: flex;
	flex-direction: column;
}
.newsletter-story div.nl-title h1{
	font-weight: 700;
	font-size: 26px;
	line-height: 140%;
}
.newsletter-story div.nl-title h1 span{
	font-weight: 700;
	font-size: 22px;
	line-height: 140%;
}
.newsletter-story span.nl-des {
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
}
.card-3.story::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 30px;
  width: 125px;
  height: 115px;
  background-repeat: no-repeat;
  background-size: contain;
}
/* °¢°¢ÀÇ Ä«µåº° ÀÌ¹ÌÁö ¹è°æ */
.card-3.story:nth-of-type(1)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/01cancer_obj.png');
}
.card-3.story:nth-of-type(2)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/02cancer_obj.png');
}
.card-3.story:nth-of-type(3)::after {
  background-image: url('https://m.health.chosun.com/amirang/img/03cancer_obj.png');
}

.subscibe-title .copy-s h2 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 140%;
}
.copy-s h2 span {
    display: inline;
}
.copy-s .subscibe-bottom {
	display: flex;
	flex-direction: column;
	gap:8px;
}
.copy-s .subscibe-bottom .sub-name{
	background: var(--primary);
	color: var(--white);
	display: flex;
	gap:16px;
	border-radius: 4px;
	justify-content: center;
	align-items: center;
	 height: 47px;
}
.copy-s .subscibe-bottom .sub-name span {	
	font-weight: 500;
	font-size: 17px;
	line-height: 140%;
	text-decoration: none;
}
.copy-s .subscibe-bottom .sub-name .sn-email {	
	font-weight: 700;
	text-decoration: none;
}
.copy-s .newslet-btn {
    background-color: var(--black);
    color: var(--white);
    border: none;
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    height: 47px;
}

/* =============================
   °³ÀÎÁ¤º¸Ã³¸®¹æÄ§ ÆäÀÌÁö ½ºÅ¸ÀÏ ½ÃÀÛ 
   ============================= */
.container.privacy-page {
    margin: 16px 16px 0 ;
    padding: 0px;
}
.privacy-header {
    margin: 0 auto;
    padding: 0px;
    padding: 40px 0 30px;
    background-color: var(--white);
}
.privacy-header .header-flex {	
	width: 940px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.privacy-header .page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    height: 56px;
}
.container.privacy {
    width: 940px;
    margin: 0 auto;
    padding: 0px;
}
/* ¼Ò°³ ¹®´Ü */
.privacy-intro {
  background-color: var(--bg-secondary);
  border-radius: 10px;
  padding: 20px 20px;
  margin-bottom: 16px;
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.privacy-intro p{ 
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: var(--black);
}
.privacy-section {
	display: flex;
	flex-direction: column;
	gap:8px;
	color: var(--black);
	margin-bottom: 20px;
	
}
/* ¼½¼Ç Á¦¸ñ */
.privacy-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

/* ¼½¼Ç º»¹® */
.privacy-section p,
.privacy-section ul {
	font-weight: 400;
	font-size: 15px;
	line-height: 140%;
}
.privacy-section p strong {
	font-weight: 600;
}

/* ¸®½ºÆ® ½ºÅ¸ÀÏ */
.privacy-section ul {	
  list-style-type: none;
}
.privacy-section .privacy-list {
	display: flex;
	flex-direction: column;
	gap:4px;
}
.privacy-list li {
  position: relative;
  padding-left: 12px; /* -°¡ µé¾î°¥ °ø°£ È®º¸ */
}
.privacy-section .privacy-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 4px;
  font-size: 16px;
  line-height: 140%;
}
.privacy-section .privacy-list li.li_frist::before {
  content: "";
}
.privacy-section .list-p-strong {	
font-weight: 600;
font-size: 16px;
line-height: 140%;
}
.none-list-wrap {
	display: flex;
	flex-direction: column;
	gap:0;
}	
.none-list-wrap .none-list {
	margin: 0 16px;
}
.privacy-section .privacy-list li.li_frist{
  margin-left: 0px;
	padding-left: 0px;
}
/* Ç¥ ½ºÅ¸ÀÏ */
.privacy-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.privacy-section table th,
.privacy-section table td {
  border: 1px solid var(--grey-d9);
  padding: 8px;
  text-align: center;
}
.privacy-section table th {
  background-color: var(--bg-footer);
  font-weight: 600;
}




/* ¸®½ºÆ®ÀÇ ÇªÅÍ °£°Ý */
footer {
  margin-top: 80px;
}