/* =========================================================
 * assets/css/apt.css (SV195)
 * 공동주택 단지 시설정보(apt/index.php) - 기본 카드/표 스타일은 elevator.css를 함께 쓴다
 * ========================================================= */
.fw-apt-form { display: grid; grid-template-columns: 110px 1fr auto; gap: 8px; margin: 12px 0 16px; }
.fw-apt-form select, .fw-apt-form input {
    min-width: 0; font-size: 16px; padding: 10px 12px; border: 1px solid var(--fw-border); border-radius: var(--fw-radius); background: #fff;
}
.fw-apt-result-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.fw-apt-sgg select { font-size: 14px; padding: 6px 10px; border: 1px solid var(--fw-border); border-radius: var(--fw-radius); }
.fw-apt-list { list-style: none; padding: 0; margin: 0 0 12px; border: 1px solid var(--fw-border-light); border-radius: 10px; background: #fff; overflow: hidden; }
.fw-apt-list li + li { border-top: 1px solid var(--fw-border-light); }
.fw-apt-list a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 14px; color: var(--fw-text); }
.fw-apt-list a:hover { background: #f8fafc; }
.fw-apt-list strong { word-break: keep-all; }
.fw-apt-list span { font-size: 13px; color: var(--fw-text-sub); white-space: nowrap; }
.fw-apt-checks h2 { font-size: 15px; margin: 2px 0 4px; }
.fw-apt-checks ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.fw-apt-checks li { display: flex; gap: 10px; background: #f8fafc; border-radius: 8px; padding: 10px 12px; }
.fw-apt-cp-icon { font-size: 20px; line-height: 1.2; }
.fw-apt-checks p { margin: 2px 0 4px; font-size: 13.5px; word-break: keep-all; }
.fw-apt-checks a { font-size: 12.5px; font-weight: 700; color: var(--fw-teal-dark); margin-right: 10px; }
@media (max-width: 520px) {
    .fw-apt-form { grid-template-columns: 1fr auto; }
    .fw-apt-form select { grid-column: 1 / -1; }
    .fw-apt-list a { flex-direction: column; gap: 2px; }
}
