.station-hero {
	padding: 88px 0 82px;
	background: #eaf8fa;
}

.station-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 76px;
	align-items: center;
}

.station-intro h1 {
	max-width: 650px;
	margin: 0 0 22px;
	color: var(--ink);
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.12;
	letter-spacing: -1px;
}

.station-lead {
	max-width: 570px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.station-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 32px;
}

.station-console {
	position: relative;
	padding: 24px;
	border: 1px solid #9bdce1;
	background: #ffffff;
	box-shadow: 14px 16px 0 #b9e9ec;
}

.console-head,
.console-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-size: 11px;
	letter-spacing: .8px;
}

.console-head span {
	color: #d25d63;
	font-weight: 800;
}

.console-head b {
	color: var(--muted);
	font-weight: 700;
}

.console-logo {
	display: grid;
	width: 190px;
	height: 190px;
	margin: 30px auto 24px;
	place-items: center;
	border: 1px solid #d7eef0;
	border-radius: 50%;
	background: #fbffff;
}

.console-logo img {
	width: 155px;
	height: 155px;
	object-fit: cover;
	border-radius: 50%;
}

.waveform {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	gap: 4px;
}

.waveform i {
	display: block;
	width: 4px;
	height: 18px;
	background: var(--aqua);
	animation: signal 1.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { height: 30px; animation-delay: .15s; }
.waveform i:nth-child(3n) { height: 12px; animation-delay: .3s; }

@keyframes signal {
	from { transform: scaleY(.65); opacity: .55; }
	to { transform: scaleY(1); opacity: 1; }
}

.console-meta {
	margin-top: 22px;
	padding-top: 15px;
	border-top: 1px solid var(--border);
	color: var(--muted);
}

.console-meta strong {
	color: var(--ink);
	font-size: 12px;
}

.station-proof {
	border-bottom: 1px solid var(--border);
	background: #ffffff;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 22px 0;
}

.proof-grid div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-left: 18px;
	border-left: 3px solid var(--aqua);
}

.proof-grid strong { color: var(--ink); font-size: 14px; }
.proof-grid span { color: var(--muted); font-size: 13px; }

.station-features { background: #ffffff; }
.today-section { background: #f8fcfc; }

.sound-map {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	gap: 18px;
}

.sound-map-panel {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.sound-entry {
	position: relative;
	min-height: 180px;
	padding: 25px;
	border: 1px solid var(--border);
	background: #ffffff;
	transition: transform .2s, border-color .2s;
}

.sound-entry:hover {
	transform: translateY(-4px);
	border-color: var(--aqua);
}

.sound-time {
	display: block;
	margin-bottom: 34px;
	color: var(--aqua-deep);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
}

.sound-entry strong { display: block; font-size: 23px; }
.sound-entry p { max-width: 330px; margin: 12px 0 22px; color: var(--muted); font-size: 14px; }
.sound-entry em { color: var(--muted); font-size: 12px; font-style: normal; }

.sound-map-art {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: var(--ink);
}

.sound-map-art img {
	width: 100%;
	height: 100%;
	min-height: 374px;
	object-fit: cover;
	opacity: .78;
}

.sound-map-art::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 35%, rgba(23,36,45,.9) 100%);
}

.sound-map-art div {
	position: absolute;
	z-index: 1;
	left: 24px;
	right: 24px;
	bottom: 24px;
	color: #ffffff;
}

.sound-map-art b,
.sound-map-art span {
	display: block;
}

.sound-map-art b { font-size: 22px; }
.sound-map-art span { margin-top: 5px; color: #c6d6da; font-size: 13px; }

.drama { background: #fff; }
.drama-feature-banner { position: relative; min-height: 260px; overflow: hidden; margin-bottom: 18px; background: var(--ink); }
.drama-feature-banner img { width: 100%; height: 260px; object-fit: cover; opacity: .7; }
.drama-feature-banner::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(23,36,45,.92), rgba(23,36,45,.25)); }
.drama-feature-banner > div { position: absolute; z-index: 1; top: 50%; left: 42px; max-width: 480px; transform: translateY(-50%); color: #fff; }
.drama-feature-banner span { color: #8de1e8; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.drama-feature-banner h3 { margin: 10px 0; font-size: 32px; line-height: 1.2; }
.drama-feature-banner p { margin: 0; color: #c6d6da; font-size: 14px; }
.drama-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.drama-category-card { border: 1px solid var(--border); background: #fff; transition: transform .2s, border-color .2s; }
.drama-category-card:hover { transform: translateY(-4px); border-color: var(--aqua); }
.home-drama-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.home-drama-card { overflow: hidden; border: 1px solid var(--border); background: #fff; transition: transform .2s, border-color .2s; }
.home-drama-card:hover { transform: translateY(-4px); border-color: var(--aqua); }
.home-drama-card > div:last-child { padding: 13px 15px; background: var(--primary-light); }
.home-drama-card h3 { overflow: hidden; margin: 0 0 4px; color: var(--ink); font-size: 17px; line-height: 1.4; white-space: nowrap; text-overflow: ellipsis; }
.home-drama-card p { margin: 0; color: var(--muted); font-size: 13px; }
.drama-poster { height: 185px; overflow: hidden; background: #eaf8fa; }
.drama-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.drama-category-card:hover .drama-poster img { transform: scale(1.04); }
.drama-category-card > div:last-child { padding: 16px; }
.drama-category-card h3 { margin: 0 0 4px; color: var(--ink); font-size: 17px; }
.drama-category-card p { margin: 0; color: var(--muted); font-size: 12px; }

.editor-section { background: #fff4ec; }

.editor-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 76px;
	align-items: start;
}

.editor-note h2 { margin: 0 0 17px; font-size: clamp(30px, 4vw, 45px); line-height: 1.2; }
.editor-note p:not(.eyebrow) { max-width: 420px; margin: 0 0 28px; color: var(--muted); }
.editor-list { border-top: 1px solid #e7cfc4; }
.editor-list article { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid #e7cfc4; }
.editor-list article > span { color: #d25d63; font-size: 13px; font-weight: 800; }
.editor-list b { font-size: 19px; }
.editor-list p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.voices-section {
	background: #f2fafb;
}

.voice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.voice-card {
	min-height: 270px;
	padding: 26px;
	border: 1px solid var(--border);
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(23, 36, 45, .05);
}

.voice-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-avatar {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
}

.avatar-coral { background: #d76b6e; }
.avatar-blue { background: #3f9eb2; }
.avatar-green { background: #4b9b80; }

.voice-user strong,
.voice-user time {
	display: block;
}

.voice-user strong {
	color: var(--ink);
	font-size: 15px;
}

.voice-user time {
	margin-top: 2px;
	color: var(--muted);
	font-size: 12px;
}

.voice-stars {
	margin: 22px 0 12px;
	color: #d99b35;
	font-size: 14px;
	letter-spacing: 3px;
}

.voice-card > p {
	min-height: 70px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.8;
}

.voice-topic {
	display: block;
	margin-top: 20px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
	color: var(--aqua-deep);
	font-size: 12px;
}

.station-news {
	background: #ffffff;
}

.station-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.station-news-card {
	border: 1px solid var(--border);
	background: #ffffff;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}

.station-news-card:hover {
	transform: translateY(-4px);
	border-color: var(--aqua);
	box-shadow: 0 12px 26px rgba(23, 36, 45, .08);
}

.station-news-link {
	display: block;
	height: 100%;
}

.station-news-image {
	position: relative;
	height: 150px;
	overflow: hidden;
	background: #eaf8fa;
}

.station-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
	transition: transform .3s;
}

.station-news-card:hover .station-news-image img {
	transform: scale(1.04);
}

.station-news-image span {
	position: absolute;
	left: 14px;
	bottom: 12px;
	padding: 4px 8px;
	color: #ffffff;
	background: rgba(23, 36, 45, .82);
	font-size: 11px;
}

.station-news-content {
	padding: 18px;
}

.station-news-content time {
	color: var(--aqua-deep);
	font-size: 12px;
	font-weight: 700;
}

.station-news-content h3 {
	display: -webkit-box;
	margin: 10px 0 8px;
	overflow: hidden;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.station-news-content p {
	display: -webkit-box;
	min-height: 45px;
	margin: 0 0 14px;
	overflow: hidden;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-more {
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
}

.faq-layout-section { background: #f8fcfc; }
.faq-layout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 42px; align-items: start; }
.faq-list-panel { border-top: 1px solid var(--border); }
.faq-list-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-list-question { display: flex; align-items: center; gap: 14px; }
.faq-list-question span { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; background: var(--aqua-deep); font-size: 12px; font-weight: 800; }
.faq-list-question h2 { margin: 0; color: var(--ink); font-size: 19px; }
.faq-list-item p { margin: 13px 0 10px 44px; color: var(--muted); font-size: 14px; }
.faq-list-item > a { margin-left: 44px; color: var(--aqua-deep); font-size: 13px; font-weight: 700; }
.faq-sidebar { display: grid; gap: 16px; }
.faq-sidebar-card { padding: 22px; border: 1px solid var(--border); background: #fff; }
.faq-sidebar-card h2, .faq-sidebar-card h3 { margin: 0 0 12px; color: var(--ink); }
.faq-sidebar-card p { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.faq-sidebar-card > a { display: block; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.faq-sidebar-card > a:last-child { border-bottom: 0; }
.faq-sidebar-highlight { color: #fff; border-color: var(--ink); background: var(--ink); }
.faq-sidebar-highlight h2 { color: #fff; font-size: 22px; }
.faq-sidebar-highlight span { display: block; margin-bottom: 16px; color: #8de1e8; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.faq-sidebar-highlight p { color: #c6d6da; }
.faq-sidebar-highlight a { display: inline-block; padding: 9px 13px; border: 1px solid #8de1e8; color: #fff; }
.faq-pagination { padding-top: 24px; }
.faq-pagination .text-secondary { padding: 18px 0; color: var(--muted); }
.pagebar { overflow-x: auto; }
.pagination { display: flex; flex-wrap: wrap; gap: 7px; }
.pagination .page-item { display: inline-flex; min-width: 34px; min-height: 34px; align-items: center; justify-content: center; padding: 6px 10px; border: 1px solid var(--border); color: var(--muted); background: #fff; font-size: 12px; }
.pagination .page-num-current { color: #fff; border-color: var(--aqua-deep); background: var(--aqua-deep); }
.pagination .page-link { min-width: auto; }

.about-intro-new { padding: 86px 0 78px; background: #eaf8fa; }
.about-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 80px; align-items: center; }
.about-intro-grid h1 { margin: 0 0 20px; color: var(--ink); font-size: clamp(42px, 6vw, 70px); line-height: 1.12; }
.about-intro-lead { max-width: 590px; margin: 0 0 28px; color: var(--muted); font-size: 17px; }
.about-brand-mark { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--aqua-deep); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.about-logo-frame { display: grid; width: 290px; height: 290px; place-items: center; border: 1px solid #9bdce1; border-radius: 50%; background: #fff; box-shadow: 15px 16px 0 #b9e9ec; }
.about-logo-frame img { width: 230px; height: 230px; object-fit: cover; border-radius: 50%; }
.about-manifesto { background: #fff; }
.manifesto-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.manifesto-grid h2 { margin: 0; color: var(--ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.2; }
.manifesto-grid p { margin: 0 0 18px; color: var(--muted); }
.about-principles-new { background: #f8fcfc; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle-grid article { min-height: 220px; padding: 28px; border: 1px solid var(--border); background: #fff; }
.principle-grid article:nth-child(2) { transform: translateY(18px); background: #fff4ec; }
.principle-grid span { color: var(--aqua-deep); font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.principle-grid h3 { margin: 42px 0 10px; color: var(--ink); font-size: 22px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.about-scenes-new { background: #fff; }
.about-scenes-grid { display: grid; grid-template-columns: minmax(300px, .9fr) 1fr; gap: 80px; align-items: center; }
.about-scene-image { height: 450px; overflow: hidden; background: var(--ink); }
.about-scene-image img { width: 100%; height: 100%; object-fit: cover; }
.about-scenes-grid h2 { margin: 0 0 18px; color: var(--ink); font-size: clamp(30px, 4vw, 44px); line-height: 1.25; }
.about-scenes-grid p { color: var(--muted); }
.about-scenes-grid ul { padding: 0; margin: 24px 0; list-style: none; }
.about-scenes-grid li { position: relative; padding: 7px 0 7px 22px; color: var(--muted); }
.about-scenes-grid li::before { position: absolute; left: 0; top: 15px; width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--aqua); }
.about-contact-new { padding: 52px 0; color: #fff; background: var(--ink); }
.about-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.about-contact-inner h2 { margin: 0 0 8px; font-size: 30px; }
.about-contact-inner p:not(.eyebrow) { margin: 0; color: #c6d6da; }
.about-contact-inner .eyebrow { color: #8de1e8; }

.a7-section-header { padding: 66px 0 54px; color: #fff; background: var(--ink); }
.a7-section-header h1 { margin: 0 0 10px; font-size: clamp(34px, 5vw, 52px); line-height: 1.2; }
.a7-section-header .article-kicker { margin: 0 0 10px; color: #fff; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.2; }
.a7-section-header p:not(.eyebrow) { max-width: 620px; margin: 0; color: #c6d6da; font-size: 16px; }
.a7-section-header .eyebrow { color: #8de1e8; }
.a7-page-section { background: #f8fcfc; }
.a7-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 42px; align-items: start; }
.a7-page-main { min-width: 0; }
.a7-faq-list { border-top: 1px solid var(--border); }
.a7-faq-item { border-bottom: 1px solid var(--border); background: #fff; }
.a7-faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 24px; border: 0; color: var(--ink); background: #fff; font-size: 17px; font-weight: 700; text-align: left; cursor: pointer; }
.a7-faq-question span { color: var(--aqua-deep); font-size: 22px; font-weight: 400; }
.a7-faq-answer { padding: 0 24px 20px; color: var(--muted); font-size: 14px; }
.a7-faq-answer p { margin: 0 0 10px; }
.a7-faq-answer a { color: var(--aqua-deep); font-weight: 700; }
.a7-news-list-card { display: grid; grid-template-columns: 150px 1fr; min-height: 150px; margin-bottom: 16px; border: 1px solid var(--border); background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; }
.a7-news-list-card:hover { transform: translateY(-3px); border-color: var(--aqua); box-shadow: 0 10px 24px rgba(23,36,45,.08); }
.a7-news-list-img { align-self: start; aspect-ratio: 1 / 1; overflow: hidden; background: #eaf8fa; }
.a7-news-list-img img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .3s; }
.a7-news-list-card:hover .a7-news-list-img img { transform: scale(1.04); }
.a7-news-list-body { padding: 22px; }
.a7-news-list-title { margin: 0 0 9px; font-size: 20px; line-height: 1.4; }
.a7-news-list-title a { color: var(--ink); }
.a7-news-list-desc { display: -webkit-box; margin: 0 0 14px; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.a7-news-list-body time { color: var(--aqua-deep); font-size: 12px; font-weight: 700; }
.a7-sidebar { display: grid; gap: 16px; }
.a7-side-card { padding: 22px; border: 1px solid var(--border); background: #fff; }
.a7-side-card h3 { margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--ink); font-size: 18px; }
.a7-side-highlight { color: #fff; border-color: var(--ink); background: var(--ink); }
.a7-side-highlight h3 { color: #fff; border-color: rgba(255,255,255,.25); }
.a7-side-highlight .eyebrow { color: #8de1e8; }
.a7-side-highlight p:not(.eyebrow) { color: #c6d6da; font-size: 13px; }
.a7-side-highlight a { display: inline-block; padding: 9px 13px; border: 1px solid #8de1e8; color: #fff; font-size: 13px; }
.a7-like-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.a7-like-item:last-child { border-bottom: 0; }
.a7-like-item a { display: block; color: var(--ink); font-size: 13px; line-height: 1.5; }
.a7-like-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.a7-side-link { display: block; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.a7-side-link:last-child { border-bottom: 0; }
.a7-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.a7-tags span { padding: 5px 11px; color: var(--aqua-deep); background: var(--primary-light); font-size: 12px; }
.a7-pagebar { margin-top: 24px; }
.a7-pagebar .pagination { display: flex; flex-wrap: wrap; gap: 7px; }
.a7-pagebar .page-item { display: inline-flex; min-width: 34px; min-height: 34px; align-items: center; justify-content: center; padding: 6px 10px; border: 1px solid var(--border); color: var(--muted); background: #fff; font-size: 12px; }
.a7-pagebar .page-num-current { color: #fff; border-color: var(--aqua-deep); background: var(--aqua-deep); }
.a7-article-main { min-width: 0; padding: 30px; border: 1px solid var(--border); background: #fff; }
.a7-article-header { padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.a7-article-header h1 { margin: 0 0 15px; color: var(--ink); font-size: clamp(28px, 4vw, 42px); line-height: 1.3; }
.a7-article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 12px; }
.a7-article-content { padding: 26px 0; color: var(--muted); font-size: 16px; line-height: 2; }
.a7-article-content h2, .a7-article-content h3 { margin-top: 28px; color: var(--ink); line-height: 1.45; }
.a7-article-content img { height: auto; max-width: 100%; }
.a7-article-nav { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.a7-article-nav a { color: var(--aqua-deep); }
.search-page-title { margin: 0 0 22px; color: var(--ink); font-size: 28px; line-height: 1.3; }

@media (max-width: 900px) {
	.about-intro-grid, .manifesto-grid, .about-scenes-grid { grid-template-columns: 1fr; gap: 42px; }
	.about-brand-mark { justify-self: start; }
	.principle-grid { grid-template-columns: 1fr; }
	.principle-grid article:nth-child(2) { transform: none; }
}

@media (max-width: 560px) {
	.about-intro-new { padding: 60px 0; }
	.about-logo-frame { width: 230px; height: 230px; box-shadow: 8px 9px 0 #b9e9ec; }
	.about-logo-frame img { width: 180px; height: 180px; }
	.about-scene-image { height: 330px; }
	.about-contact-inner { display: block; }
	.about-contact-inner .button { margin-top: 22px; }
}

@media (max-width: 900px) {
	.station-grid,
	.editor-grid { grid-template-columns: 1fr; gap: 44px; }
	.station-console { max-width: 430px; }
	.proof-grid { gap: 12px; }
	.voice-grid,
	.station-news-grid { grid-template-columns: 1fr; }
	.home-drama-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.faq-layout-grid { grid-template-columns: 1fr; }
	.drama-category-grid { grid-template-columns: repeat(2, 1fr); }
	.a7-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.station-hero { padding: 60px 0; }
	.station-intro h1 { font-size: 44px; letter-spacing: 0; }
	.station-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
	.station-console { box-shadow: 8px 9px 0 #b9e9ec; }
	.proof-grid { grid-template-columns: 1fr; }
	.sound-map { grid-template-columns: 1fr; }
	.sound-map-panel { grid-template-columns: 1fr; }
	.sound-map-art img { min-height: 300px; }
	.drama-feature-banner img { height: 300px; }
	.drama-feature-banner > div { top: auto; right: 24px; bottom: 24px; left: 24px; transform: none; }
	.drama-feature-banner h3 { font-size: 26px; }
	.drama-category-grid, .home-drama-grid { grid-template-columns: 1fr; }
	.a7-news-list-card { grid-template-columns: 1fr; }
	.a7-news-list-img { aspect-ratio: 16 / 9; }
	.a7-article-main { padding: 21px; }
	.a7-article-nav { display: block; }
	.a7-article-nav span { display: block; margin: 8px 0; }
}
