<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ============================
   모바일 리스트 스타일 
   ============================ */
.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: 400 / 265;
  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;
}</pre></body></html>