/* Global Styles */
/*body {*/
/*	margin: 0;*/
/*	padding: 0;*/
/*	letter-spacing: -0.02em;*/
/*}*/




/* 공통  */
.archive-post .ellipsis-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-post .ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-post .ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-post .w-content {
	max-width: 560px;
	margin: 0 auto;
	overflow: hidden;
}

.archive-post .btn-more {
	width: 100%;
	height: 40px;
	border-radius: 100px;
	border: 1px solid #eee;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	margin-top: 24px;
	cursor: pointer;
}

.archive-post .section-title-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.archive-post .section-title-block .left {
	display: flex;
	align-items: center;
	gap: 6px;
}

.archive-post .section-title-block .icon {
	display: block;
	width: 22px;
	font-size: 20px;
}

.archive-post .section-title-block .section-title {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: normal;
}

.archive-post .section-title-block .arrow-right {
	display: block;
	margin-right: 5px;
	width: 7px;
}




.archive-post .section.banner {
	width: 100%;
	height: 421px;
	background-image: url("../images/magazine/bg-banner.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1920px;
	position: relative;
	margin-bottom: 12px;
}

.archive-post .section.banner::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 100vw;
	height: 100%;
	background-image: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 30%);
	background-size: 100%;
	z-index: -1;
}

.archive-post .section.banner .text {
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	z-index: 1;
}

.archive-post .section.banner .text .category {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 160%;
	margin-bottom: 4px;
}

.archive-post .section.banner .text .title {
	color: #000;
	font-size: 30px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 30px;
}

.archive-post .section.banner .text .desc {
	color: #666;
	font-size: 15px;
	font-weight: 500;
	line-height: 160%;
}




.archive-post .section.tab-menu {
	position: sticky;
	left: 0;
	top: 151px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(3px);
	border-bottom: 1px solid #EBEBEB;
	z-index: 2;
}

.archive-post .section.tab-menu.stuck {
	border-bottom: none;
}

.archive-post .section.tab-menu .tabs {
	display: flex;
	align-items: flex-end;
	gap: 26px;
}

.archive-post .section.tab-menu .tab {
	display: block;
	color: #000;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: normal;
	position: relative;
}

.archive-post .section.tab-menu.stuck .tab {
	color: rgba(0, 0, 0, 0.3);
}

.archive-post .section.tab-menu.stuck .tab.active {
	color: #000;
}


.archive-post .section.tab-menu .tab::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 52px;
	height: 2px;
	background-color: #000;
	opacity: 0;
}

.archive-post .section.tab-menu .tab a {
	display: block;
	padding: 16px 0;
	color: currentColor;
}

.archive-post .section.tab-menu .tab a span {
	position: relative;
}

.archive-post .section.tab-menu .tab a span::after {
	content: '';
	position: absolute;
	right: -3px;
	top: -3px;
	width: 3px;
	height: 3px;
	border-radius: 100%;
	background-color: #DA3023;
	opacity: 0;
}

.archive-post .section.tab-menu .tab.active::after {
	opacity: 1;
}

.archive-post .section.tab-menu.stuck .tab.active::after {
	display: none;
}

.archive-post .section.tab-menu .tab.new a span::after {
	opacity: 1;
}




.archive-post .section.tip {
	padding: 35px 0 40px;
	border-bottom: 10px solid #F5F5F5;
}


.archive-post .section.tip .list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.archive-post .section.tip .item {
	width: 100%;
	padding: 20px 0;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	border-bottom: 1px solid #F7F7F7;
	min-width: 0;
}

.archive-post .section.tip .item:first-child {
	padding-top: 0;
}

.archive-post .section.tip .item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.archive-post .section.tip .item .img {
	width: 80px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 16px;
	background-color: #D9D9D9;
	flex-shrink: 0;
}

.archive-post .section.tip .item .img img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.archive-post .section.tip .item .text {
	flex: 1;
	min-width: 0;
	padding-top: 2px;
}

.archive-post .section.tip .item .text .info {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 6px;
}

.archive-post .section.tip .item .text .info span {
	color: #AAA;
	font-size: 12px;
	font-weight: 500;
	line-height: 160%;
	position: relative;
	letter-spacing: normal;
}

.archive-post .section.tip .item .text .info span::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 42%;
	width: 2px;
	height: 2px;
	border-radius: 100%;
	background-color: #aaa;
}

.archive-post .section.tip .item .text .info span:last-child::after {
	display: none;
}

.archive-post .section.tip .item .text .title {
	display: block;
	width: 100%;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: normal;
}




.archive-post .section.ingredient {
	padding: 40px 0;
	border-bottom: 10px solid #F5F5F5;
}

.archive-post .section.ingredient .swiper-container {
	width: 100%;
}

.archive-post .section.ingredient .item {}

.archive-post .section.ingredient .item .img {
	width: 110px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	background-color: #D9D9D9;
	overflow: hidden;
	margin-bottom: 12px;
}

.archive-post .section.ingredient .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.archive-post .section.ingredient .item .text {}

.archive-post .section.ingredient .item .text .title {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: normal;
	margin-bottom: 6px;
}

.archive-post .section.ingredient .item .text .tags {
	/*display: flex;
	align-items: center;
	gap: 5px;*/
}

.archive-post .section.ingredient .item .text .tag {
	display: inline-block;
	height: 20px;
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(218, 48, 35, 0.08);
	color: #DA3023;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
}

.archive-post .section.ingredients .item .text .tags {
	/*display: flex;
	align-items: center;
	gap: 5px;*/
}

.archive-post .section.ingredients .item .text .tag {
	display: inline-block;
	height: 20px;
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(218, 48, 35, 0.08);
	color: #DA3023;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
}
.archive-post .section.ingredients .item .title {
	color: #000;
	text-overflow: ellipsis;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 22.4px */
	margin-bottom: 6px;
}
.archive-post .section.ingredients .item span {
	display: inline-block;
	height: 20px;
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(218, 48, 35, 0.08);
	color: #DA3023;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
}




.archive-post .section.faq {
	padding: 40px 0 100px;
}

.archive-post .section.faq .section-title-block {
	margin-bottom: 30px;
}


.archive-post .section.faq .list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.archive-post .section.faq .item {
	width: 100%;
	padding : 20px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid #eee;
}

.archive-post .section.faq .item:first-child {
	padding-top: 0;
}

.archive-post .section.faq .item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.archive-post .section.faq .item .tags {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
}

.archive-post .section.faq .item .tag {
	display: inline-block;
	height: 20px;
	padding: 2px 8px;
	border-radius: 34px;
	background: rgba(153, 153, 153, 0.08);
	color: #666;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
}

.archive-post .section.faq .item .title {
	display: block;
	width: 100%;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: normal;
	margin-bottom: 10px;
}

.archive-post .section.faq .item .date {
	color: #999;
	font-size: 12px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: normal;
}



@media (max-width: 600px) {
	.archive-post .w-content {
		max-width: 100%;
		padding: 0 16px;
	}

	.archive-post .section.tab-menu {
		top: 144px;
	}

	.archive-post .section.ingredient .swiper-slide {
		width: auto;
	}

	.archive-post .section.banner {
		background-image: url("../images/magazine/bg-banner-m.png") !important;
		background-size: auto 100%;
		aspect-ratio: 393 / 421;
		max-height: 421px;
		margin-bottom: 10px;
	}

	.archive-post .section.tip .item .text .title,
	.archive-post .section.faq .item .title {
		display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    white-space: normal;
	}

	.archive-post .section.faq {
		padding: 40px 0 60px;
	}

}

