/**
 * 파이어클래스 강의 상세페이지 스타일
 * (functions.php에서 상품 상세페이지에만 로드됨)
 */

body.single-product {
	background: #FFFFFF;
	color: #111111;
	padding-bottom: 88px;
}
body.single-product .site-main {
	font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", "Malgun Gothic", sans-serif;
	letter-spacing: -0.01em;
}

/* 브레드크럼 */
body.single-product .woocommerce-breadcrumb {
	font-size: 13px !important;
	color: #999999 !important;
	margin: 18px 0 !important;
}
body.single-product .woocommerce-breadcrumb a { color: #666666; text-decoration: none; }

/* 세일 뱃지 숨김 (타이머/가격이 대신함) */
body.single-product .onsale { display: none !important; }

/* ── 레이아웃: 좌측 콘텐츠 + 우측 고정 패널 ── */
.au-pd-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	grid-template-areas:
		"media panel"
		"content panel";
	column-gap: 56px;
	align-items: start;
}
.au-pd-media-wrap { grid-area: media; }
.au-pd-panel { grid-area: panel; position: sticky; top: 104px; padding-top: 6px; } /* 고정 헤더(80px) + 여백 */
body.admin-bar .au-pd-panel { top: 136px; }
.au-pd-content { grid-area: content; min-width: 0; }

/* ── 타이머 띠 + 갤러리 ── */
.au-pd-media-wrap { border-radius: 10px; overflow: hidden; }
.au-timer-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #111111;
	color: #FFFFFF;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	padding: 12px 16px;
	font-variant-numeric: tabular-nums;
}
.au-timer-strip b { font-weight: 800; color: #DFF3EA; }
.au-timer-strip.au-timer-off { display: none; }

.au-pd-media .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}
.au-pd-media .woocommerce-product-gallery__image { border-radius: 0; }
.au-pd-media img { width: 100%; height: auto; display: block; }

/* ── 우측 구매 패널 (보더리스) ── */
.au-pd-title {
	font-size: 22px !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em;
	line-height: 1.4 !important;
	margin: 0 0 10px !important;
	color: #111111;
}
.au-star { color: #FFB400; }
.au-pd-rating {
	font-size: 16px;
	font-weight: 800;
	color: #111111;
	margin: 0 0 22px;
	font-variant-numeric: tabular-nums;
}
.au-pd-rating .au-rc { font-weight: 600; color: #999999; font-size: 14px; }
/* 무료 특강: 별점 자리의 특강 일시 */
.au-pd-when {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 800;
	color: #14201A;
	margin: 0 0 22px;
	font-variant-numeric: tabular-nums;
}
.au-pd-when svg { width: 17px; height: 17px; color: #0A7D54; flex-shrink: 0; }
.au-pd-live { display: inline-flex; align-items: center; gap: 5px; margin-left: 2px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; color: #F04438; }
.au-pd-live i { position: relative; width: 6px; height: 6px; border-radius: 50%; background: #F04438; font-style: normal; }
.au-pd-live i::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(240, 68, 56, 0.5); animation: au-pd-ping 2.4s ease-out infinite; }
@keyframes au-pd-ping { 0% { transform: scale(0.5); opacity: 1; } 70% { transform: scale(1.4); opacity: 0; } 100% { opacity: 0; } }

.au-pd-price {
	border-top: 1px solid #EEEEEE;
	padding-top: 18px;
	margin-bottom: 20px;
}
.au-pd-was {
	font-size: 14.5px;
	color: #999999;
	text-decoration: line-through;
	font-variant-numeric: tabular-nums;
}
.au-pd-daily {
	font-size: 17px;
	font-weight: 700;
	color: #111111;
	margin: 2px 0 0;
}
.au-pd-daily b {
	font-size: 32px;
	font-weight: 800;
	color: #0A7D54;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

/* 장바구니 영역: 아래 주황 버튼과의 간격 (버튼 마진이 무시돼도 유지되도록 래퍼에 지정) */
body.single-product .au-pd-cart {
	display: block;
	margin: 0 0 10px !important;
	padding: 0 !important;
}

/* 장바구니 폼 (우커머스 기본 폼 재스타일) — 테마의 회색 박스 제거 */
body.single-product .woocommerce div.product .au-pd-cart form.cart,
.au-pd-cart form.cart {
	display: block !important;
	width: 100% !important;
	background: none !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	gap: 0 !important;
}
.au-pd-cart .quantity { display: none !important; }
.au-pd-cart .single_add_to_cart_button {
	display: block !important;
	width: 100% !important;
	text-align: center;
	background: #FFFFFF !important;
	color: #111111 !important;
	border: 1px solid #DDDDDD !important;
	box-shadow: none !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em;
	padding: 15px 20px !important;
	height: auto !important;
	line-height: 1.4 !important;
	border-radius: 8px !important;
	margin: 0 !important;
	transition: background 0.15s ease;
}
.au-pd-cart .single_add_to_cart_button:hover,
.au-pd-cart .single_add_to_cart_button:focus {
	background: #F7F7F7 !important;
	color: #111111 !important;
	transform: none !important;
}

.au-btn-buy {
	display: block;
	width: 100%;
	text-align: center;
	background: #0A7D54;
	color: #FFFFFF !important;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding: 15px 20px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background 0.15s ease;
}
.au-btn-buy:hover, .au-btn-buy:focus { background: #0FA36C; color: #FFFFFF !important; }

/* 선착순 그래프 */
.au-scarcity { margin-top: 16px; }
.au-sc-label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 13px;
	color: #666666;
	margin: 0 0 8px;
}
.au-sc-label b {
	color: #066847;
	font-weight: 800;
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}
.au-sc-bar {
	height: 8px;
	background: #F0F0F0;
	border-radius: 999px;
	overflow: hidden;
}
.au-sc-bar span {
	display: block;
	height: 100%;
	background: #0A7D54;
	border-radius: 999px;
	animation: au-sc-fill 1s ease-out;
}
@keyframes au-sc-fill { from { width: 0; } }

/* ── 본문 섹션 ── */
.au-pd-sec { padding: 44px 0 8px; }
.au-pd-sec + .au-pd-sec { border-top: 1px solid #EEEEEE; margin-top: 36px; }
.au-pd-sec > h2 {
	font-size: 20px !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em;
	margin: 0 0 18px !important;
	color: #111111;
}
.au-pd-desc { font-size: 15px; }

/* 환불 안내 */
.au-refund-row {
	padding: 13px 2px;
	border-bottom: 1px solid #EEEEEE;
	font-size: 14.5px;
	color: #666666;
}

/* ══ 탭 내비게이션 (2026-08-14, 목업 v3) ══ */
.au-pd [hidden] { display: none !important; }
.au-tabs {
	/* sticky 제거 (2026-08-28) — 탭이 스크롤을 따라다니지 않게 */
	position: static;
	display: flex;
	background: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
	margin-top: 28px;
}
.au-tab {
	flex: 1;
	text-align: center;
	padding: 15px 4px 13px;
	font-size: 15px;
	font-weight: 700;
	color: #999999;
	border: none;
	background: none;
	font-family: inherit;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	letter-spacing: -0.01em;
	white-space: nowrap;
}
.au-tab .au-tab-n {
	font-size: 12.5px;
	color: #BBBBBB;
	font-weight: 700;
	margin-left: 3px;
	font-variant-numeric: tabular-nums;
}
.au-tab:hover { color: #111111; }
.au-tab.on { color: #111111; font-weight: 800; border-bottom-color: #111111; }
.au-tab.on .au-tab-n { color: #0A7D54; }
.au-pd-content .au-pd-sec { scroll-margin-top: 150px; }
body.admin-bar .au-pd-content .au-pd-sec { scroll-margin-top: 182px; }

/* ══ 클래스 소개: 더보기 접기 ══ */
.au-intro { position: relative; }
.au-intro-clip { position: relative; }
.au-clamped .au-intro-clip { max-height: 1200px; overflow: hidden; }
.au-clamped.au-open .au-intro-clip { max-height: none; }
.au-intro-fade { display: none; }
.au-clamped .au-intro-fade {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 160px;
	background: linear-gradient(rgba(255, 255, 255, 0), #FFFFFF 82%);
	pointer-events: none;
}
.au-clamped.au-open .au-intro-fade { display: none; }
.au-intro-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	margin-top: 10px;
	padding: 15px 20px;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	color: #111111;
	cursor: pointer;
}
.au-intro-more:hover { background: #F7F7F7; }
.au-intro-more svg {
	width: 14px;
	height: 14px;
	stroke: #111111;
	stroke-width: 2.4;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.2s;
}
.au-open .au-intro-more svg { transform: rotate(180deg); }

/* ══ 커리큘럼: 심플 LMS 출력 재스타일 ══ */
#au-cur-target .cosmosfarm-simple-lms { border-top: 2px solid #111111; }
#au-cur-target .simple-lms-page { background: none !important; padding: 0 !important; }
#au-cur-target .simple-lms-title { padding: 20px 4px 10px !important; background: none !important; border: none !important; margin: 0 !important; }
#au-cur-target .simple-lms-title-text {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #111111 !important;
	letter-spacing: -0.02em;
}
#au-cur-target .simple-lms-info {
	display: flex !important;
	align-items: center;
	gap: 14px;
	padding: 14px 4px !important;
	margin: 0 !important;
	background: none !important;
	border: none !important;
	border-bottom: 1px solid #EEEEEE !important;
	border-radius: 0 !important;
	cursor: default !important;
}
#au-cur-target .simple-lms-number {
	font-size: 12.5px !important;
	font-weight: 800 !important;
	color: #AAAAAA !important;
	width: 26px;
	height: 26px;
	border-radius: 50% !important;
	background: #F0F4F1 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
	margin: 0 !important;
	padding: 0 !important;
}
#au-cur-target .simple-lms-data {
	flex: 1;
	min-width: 0;
	font-size: 14.5px !important;
	font-weight: 600 !important;
	color: #333333 !important;
	line-height: 1.5;
}
#au-cur-target .play-percent { display: none !important; }

/* ══ 수강후기 리디자인 (목업 v3) ══ */
#au-reviews .woocommerce-Reviews-title { display: none; }
.au-rv-head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 6px 2px 14px;
	border-bottom: 1px solid #EEEEEE;
}
.au-rv-head .au-rv-big {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #111111;
	font-variant-numeric: tabular-nums;
}
.au-rv-head .au-rv-stars { color: #FFB400; font-size: 17px; letter-spacing: 1px; }
.au-rv-head .au-rv-cnt { font-size: 13.5px; color: #999999; font-weight: 600; }

.au-rv-toolbar { display: flex; justify-content: flex-end; padding: 14px 2px 4px; }
.au-rv-sel { position: relative; }
.au-rv-sel select {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #E5E5E5 !important;
	background: #FFFFFF !important;
	border-radius: 8px !important;
	font-family: inherit;
	font-size: 13px !important;
	font-weight: 700;
	color: #333333 !important;
	padding: 9px 32px 9px 14px !important;
	cursor: pointer;
	box-shadow: none !important;
}
.au-rv-sel::after {
	content: "";
	position: absolute;
	right: 13px;
	top: 50%;
	margin-top: -3px;
	width: 7px;
	height: 7px;
	border-right: 1.8px solid #999999;
	border-bottom: 1.8px solid #999999;
	transform: rotate(45deg) translateY(-2px);
	pointer-events: none;
}

.au-rv { padding: 22px 2px; border-bottom: 1px solid #EEEEEE; }
#au-rv-list .au-rv:last-child { border-bottom: none; }
.au-rv-top { display: flex; align-items: center; gap: 10px; }
.au-rv-av {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #F1EFEB;
	color: #7E8B84;
	font-size: 14px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.au-rv-who { flex: 1; min-width: 0; }
.au-rv-who b { font-size: 14px; font-weight: 700; color: #111111; }
.au-rv-best {
	font-size: 11.5px;
	font-weight: 800;
	color: #0A7D54;
	letter-spacing: 0.04em;
	margin-right: 6px;
}
.au-rv-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: #AAAAAA;
	margin-top: 2px;
	font-variant-numeric: tabular-nums;
}
.au-rv-meta .st { color: #FFB400; letter-spacing: 0.5px; }
.au-rv-verified {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	font-weight: 700;
	color: #7E8B84;
	flex-shrink: 0;
}
.au-rv-verified svg { width: 15px; height: 15px; flex-shrink: 0; }
.au-rv-body { font-size: 14.5px; line-height: 1.75; color: #333333; margin: 12px 0 0 46px; }
.au-rv-body p { margin: 0 0 8px; }
.au-rv-body p:last-child { margin-bottom: 0; }
.au-rv-help { margin: 12px 0 0 46px; }
.au-rv-help-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #E5E5E5;
	background: #FFFFFF;
	border-radius: 999px;
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 700;
	color: #666666;
	padding: 7px 14px;
	cursor: pointer;
}
.au-rv-help-btn:hover { border-color: #BBBBBB; color: #111111; }
.au-rv-help-btn.done { border-color: #0A7D54; color: #066847; cursor: default; }
.au-rv-reply {
	margin: 14px 0 0 46px;
	background: #FAFBFA;
	border-radius: 10px;
	padding: 14px 18px;
}
.au-rv-reply b {
	font-size: 13px;
	font-weight: 800;
	color: #066847;
	display: block;
	margin-bottom: 5px;
}
.au-rv-reply p { font-size: 13.5px; line-height: 1.7; color: #555555; margin: 0; }
.au-rv-empty, .au-rv-locked { font-size: 14.5px; color: #7E8B84; padding: 8px 2px 4px; }

/* 후기 작성 폼 */
#au-reviews #review_form_wrapper.au-rv-form {
	margin-top: 28px;
	background: #FAFBFA;
	border-radius: 12px;
	padding: 24px 26px;
}
#au-reviews .comment-reply-title {
	font-size: 16px !important;
	font-weight: 800;
	color: #111111;
}
#au-reviews .au-rv-form-sub { font-size: 13px; color: #7E8B84; margin: 4px 0 12px; }
#au-reviews .au-rv-form-note { font-size: 12.5px; color: #AAAAAA; margin: 10px 0 0; }
#au-reviews .comment-form-rating label { font-size: 13px; font-weight: 700; color: #666666; display: block; margin-bottom: 4px; }
#au-reviews .comment-form-rating.au-has-pick .stars { display: none !important; } /* 우커머스 기본 별 UI 숨김 (자체 픽커 사용) */
#au-reviews .comment-form-rating.au-has-pick select#rating {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.au-rv-pick { display: flex; gap: 4px; margin: 2px 0 14px; }
.au-rv-pick button {
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	color: #DDD8CF;
	cursor: pointer;
	padding: 0 2px;
	transition: color 0.1s;
	font-family: inherit;
}
.au-rv-pick button.on { color: #FFB400; }
#au-reviews .comment-form-author, #au-reviews .comment-form-email { margin: 0 0 12px; }
#au-reviews .comment-form-author label, #au-reviews .comment-form-email label {
	font-size: 13px;
	font-weight: 700;
	color: #666666;
	display: block;
	margin-bottom: 4px;
}
#au-reviews #review_form textarea { width: 100%; box-sizing: border-box; min-height: 110px; }
#au-reviews .form-submit { margin: 14px 0 0; text-align: right; }
#au-reviews #review_form input[type="text"],
#au-reviews #review_form input[type="email"],
#au-reviews #review_form textarea {
	background: #F4F4F5 !important;
	border: 1px solid #F4F4F5 !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	font-family: inherit;
	box-shadow: none !important;
}
#au-reviews #review_form input:focus,
#au-reviews #review_form textarea:focus {
	background: #FFFFFF !important;
	border-color: #0A7D54 !important;
	outline: none !important;
}
#au-reviews #review_form input[type="submit"] {
	background: #111111 !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 8px !important;
	font-weight: 800 !important;
	padding: 12px 26px !important;
	cursor: pointer;
}
#au-reviews #review_form input[type="submit"]:hover { background: #000000 !important; }

/* ── 하단 고정 구매바 ── */
.au-buybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9000;
	background: rgba(255, 255, 255, 0.97);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid #EEEEEE;
}
.au-buybar-in {
	max-width: 1120px;
	margin: 0 auto;
	padding: 10px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 70px;
}
.au-bb-pill {
	background: #111111;
	color: #FFFFFF;
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}
.au-bb-pill.au-timer-off { display: none; }
.au-bb-copy {
	font-size: 15px;
	font-weight: 700;
	color: #111111;
	margin: 0;
	min-width: 0;
}
.au-bb-copy b { color: #0A7D54; font-weight: 800; }
.au-bb-btn {
	margin-left: auto;
	width: auto;
	padding: 13px 30px;
	font-size: 15.5px;
	flex-shrink: 0;
}

/* ── 신청 완료 상태 (무료 특강, 2026-08-13) ──
 * 신청한 회원에게는 구매 버튼 대신 '신청 완료(비활성) + 대기방 입장(카카오)' 표시.
 * content-single-product.php 의 $au_enrolled_chat 분기와 연동. */
.au-btn-done {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	box-sizing: border-box;
	background: #F1F2F4 !important;
	color: #9CA1A8 !important;
	border: none !important;
	font-family: inherit;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding: 15px 20px;
	border-radius: 8px;
	cursor: default;
}
.au-btn-done svg {
	width: 17px;
	height: 17px;
	stroke: #9CA1A8;
	stroke-width: 2.6;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}
.au-btn-kakao {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	background: #FEE500;
	color: #191919 !important;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding: 15px 20px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background 0.15s ease;
}
.au-btn-kakao:hover, .au-btn-kakao:focus { background: #F5DC00; color: #191919 !important; }
.au-btn-kakao svg { width: 19px; height: 19px; flex-shrink: 0; }
.au-btn-kakao.au-bb-btn { width: auto; }
.au-enrolled-note {
	font-size: 13px;
	color: #7E8B84;
	text-align: center;
	margin: 14px 0 0;
	line-height: 1.6;
}
.au-bb-pill-lect { display: inline-flex; align-items: center; gap: 7px; }
.au-bb-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0A7D54;
	animation: au-bb-blink 1.2s ease-in-out infinite;
}
@keyframes au-bb-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

@media (prefers-reduced-motion: reduce) {
	.au-btn-buy, .au-pd-cart .single_add_to_cart_button, .au-btn-kakao { transition: none; }
	.au-sc-bar span { animation: none; }
	.au-bb-dot { animation: none; }
}

@media (max-width: 920px) {
	.au-pd-layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"panel"
			"content";
	}
	.au-pd-panel { position: static; padding-top: 20px; }
	#au-reviews .comment-text { max-width: 100%; }
}
@media (max-width: 520px) {
	/* 2단 스택: 카피 1줄(말줄임) 위 + [타이머·풀와이드 버튼] 아래 */
	.au-buybar { padding-bottom: env(safe-area-inset-bottom, 0px); }
	.au-buybar-in {
		flex-wrap: wrap;
		gap: 8px 10px;
		padding: 9px 14px 11px;
		min-height: 0;
	}
	.au-bb-copy {
		display: block;
		flex: 1 1 100%;
		order: -1;
		margin-top: 2px;
		font-size: 13.5px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.au-bb-pill { font-size: 12px; padding: 7px 13px; }
	.au-bb-btn { flex: 1; padding: 12px 16px; }
}

/* ── 상세 본문(커리큘럼) 랜딩 이미지 (2026-08-14) ──
 * 세로로 긴 상세페이지 이미지를 본문 컬럼 폭에 꽉 차게 표시하고,
 * 여러 장으로 나뉜 이미지 조각 사이의 문단 여백·행간 틈을 제거해 이어 붙인다. */
.au-pd-desc img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}
.au-pd-desc p:has(img) {
	margin: 0;
	line-height: 0;
}

/* 환불 및 이용정책: /refund/ 페이지 '환불 산정 원칙' 발췌 (접기 없음) */
.au-refund-body { font-size: 14px; color: #5F6E65; }
.au-refund-body ul { padding-left: 20px; margin: 0 0 14px; }
.au-refund-body li { margin: 0 0 8px; line-height: 1.65; }
.au-refund-body b { color: #14201A; }
.au-refund-body table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 0 0 12px; }
.au-refund-body th, .au-refund-body td { border: 1px solid #DFE6E1; padding: 9px 12px; text-align: left; }
.au-refund-body th { background: #F0F4F1; color: #14201A; font-weight: 700; }
.au-refund-link { display: inline-block; margin-top: 6px; font-size: 13.5px; font-weight: 700; color: #0A7D54 !important; text-decoration: underline; }
.au-refund-link:hover { color: #066847 !important; }

/* 하단 바: 무료 특강 일시 표기 */
.au-bb-when { font-weight: 800; color: #14201A; font-variant-numeric: tabular-nums; }
.au-bb-when .au-pd-live { margin-left: 4px; }
