/* case-girls */
.case-girls { margin: 20px auto; display: grid; grid-template-columns: .7fr 1fr; gap: 20px; }

/* case */
.case-hero { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.case-hero img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumbs img { aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; }

/* video */
.video { position: relative; width: 100%; padding-top: 56.25%; border-radius: 12px; overflow: hidden; margin-top: 16px; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* girls */
.girls-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.girls-grid a { display: block; text-align: center; color: var(--primary); font-weight: 700; }
.girls-grid img { width: 100%; aspect-ratio: 3/4; border-radius: 10px; border: 1px solid var(--border); }

/* news */
.news .container { margin: 20px auto; }
.news .card ul { list-style: none; margin: 0; padding: 0; }
.news .card li { display: grid; grid-template-columns: 40px 100px 1fr; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.news .card li a { overflow: hidden; height: 1.5em; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.news time { color: var(--muted); }
.news-list { overflow: hidden; max-width: 100%; }

/* faq */
.faq .container { margin: 20px auto; }
.faq .lead { margin: 0; color: var(--muted); }
.faq .accordion { margin-top: 20px; border-top: 1px solid var(--border); }
.faq .acc { border-bottom: 1px solid var(--border); }
.faq .acc-btn { appearance: none; -webkit-appearance: none; background: none; border: 0; padding: 14px; display: flex; align-items: center; justify-content: space-between; width: 100%; font: inherit; color: inherit; line-height: 1.5; cursor: pointer; }
.faq .acc-btn:focus { outline: none; }
.faq .acc-btn:focus-visible { outline: 2px solid var(--primary, #e65988); outline-offset: 2px; border-radius: 8px; }

.chev { width: 20px; height: 20px; flex: 0 0 20px; background-color: #6b7280; mask: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"6 9 12 15 18 9\"/></svg>') center/contain no-repeat; transition: transform .2s ease, background-color .2s ease; }
.acc.open .chev { transform: rotate(180deg); background-color: var(--primary); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; padding: 0 14px; }
.acc.open .acc-panel { max-height: 700px; padding: 0 14px 14px; }

@media(max-width:992px) {
	.case-girls { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
	.thumbs { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:550px) {
	.girls-grid { grid-template-columns: repeat(2, 1fr); }
	.news .card li { grid-template-columns: 40px 1fr; }
	.news .card li a { grid-column: 1/3; }
}