Files
baron_qa_write/assets/styles.css
T
root 176316378b
Deploy EG-BIM QA Gateway / deploy (push) Successful in 56s
상세페이지 UI 개선
2026-09-22 17:05:12 +09:00

463 lines
25 KiB
CSS

@font-face {
font-family: 'Noto Sans KR';
src: url('./fonts/notokr-regular.woff2') format('woff2');
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: 'Noto Sans KR';
src: url('./fonts/notokr-medium.woff2') format('woff2');
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: 'Noto Sans KR';
src: url('./fonts/notokr-bold.woff2') format('woff2');
font-weight: 700;
font-display: swap;
}
:root {
--navy: #173f78;
--ink: #171717;
--muted: #707070;
--line: #e5e5e5;
--soft: #f7f8fa;
--accent: #005bff;
--green: #0c7857;
--header-height: 88px;
}
* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
margin: 0;
color: var(--ink);
background: #fff;
font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
font-size: 15px;
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
.site-header {
position: relative;
z-index: 10;
height: var(--header-height);
border-bottom: 1px solid #ededed;
background: rgba(255, 255, 255, .98);
}
.header-inner {
display: flex;
align-items: center;
height: 100%;
max-width: 1840px;
padding: 0 32px;
margin: 0 auto;
}
.brand {
display: inline-flex;
align-items: center;
gap: 8px;
flex: 0 0 auto;
color: var(--navy);
font-size: 17px;
font-weight: 700;
white-space: nowrap;
}
.brand-mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 24px;
border: 2px solid var(--navy);
border-radius: 50%;
font-size: 14px;
font-style: italic;
letter-spacing: -1px;
}
.global-nav {
display: flex;
align-items: stretch;
height: 100%;
gap: clamp(22px, 2.5vw, 52px);
margin-left: auto;
margin-right: 38px;
}
.nav-item {
position: relative;
display: inline-flex;
align-items: center;
color: #3d3d3d;
font-size: 16px;
white-space: nowrap;
}
.nav-item.package::after {
content: '';
position: absolute;
right: -13px;
bottom: 25px;
left: -13px;
height: 2px;
background: var(--navy);
transform: scaleX(0);
transition: transform .2s ease;
}
.nav-item.package:hover::after,
.nav-item.package:focus-within::after { transform: scaleX(1); }
.mega-menu {
position: absolute;
top: calc(100% - 1px);
left: 50%;
display: grid;
grid-template-columns: 116px 1fr;
width: 360px;
padding: 22px 20px;
border-radius: 0 0 10px 10px;
background: #fff;
box-shadow: 0 15px 36px rgba(0, 0, 0, .13);
opacity: 0;
pointer-events: none;
transform: translate(-50%, -6px);
transition: opacity .2s ease, transform .2s ease;
}
.nav-item.package:hover .mega-menu,
.nav-item.package:focus-within .mega-menu {
opacity: 1;
pointer-events: auto;
transform: translate(-50%, 0);
}
.mega-label { color: var(--accent); font-weight: 500; padding-top: 5px; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.mega-links a { color: #555; font-size: 14px; }
.mega-links a:hover, .mega-links a[aria-current='page'] { color: var(--accent); }
.header-tools { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.locale { font-weight: 700; }
.locale span { color: #c9c9c9; margin: 0 8px; }
.locale a:last-child { color: #9a9a9a; font-weight: 400; }
.login-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.user-icon { width: 20px; height: 20px; border: 1.8px solid #111; border-radius: 50%; position: relative; margin-top: -9px; }
.user-icon::after { content: ''; position: absolute; top: 17px; left: -5px; width: 26px; height: 12px; border: 1.8px solid #111; border-bottom: 0; border-radius: 16px 16px 0 0; }
.menu-button { display: inline-flex; flex-direction: column; gap: 6px; border: 0; background: none; padding: 6px 0 6px 8px; }
.menu-button span { display: block; width: 24px; height: 1.5px; background: #111; }
.page-hero {
display: flex;
min-height: 248px;
align-items: center;
justify-content: center;
color: #fff;
text-align: center;
background: linear-gradient(115deg, #11342b 0%, #10221f 50%, #07110f 100%);
}
.hero-inner { padding: 42px 24px; }
.hero-kicker { display: block; color: #b9d9ca; font-size: 14px; letter-spacing: .06em; }
.page-hero h1 { margin: 5px 0 5px; font-size: 42px; letter-spacing: -.05em; }
.page-hero p { margin: 0; color: #d5dfdc; font-size: 16px; }
.sub-nav { background: rgba(8, 30, 24, .96); color: #fff; }
.sub-nav-inner { display: flex; max-width: 1280px; margin: 0 auto; }
.sub-nav a { flex: 1; padding: 17px 12px; text-align: center; color: #cbd6d2; }
.sub-nav a:hover, .sub-nav a[aria-current='page'] { color: #fff; background: #1c7056; font-weight: 700; }
.page-shell { max-width: 1280px; padding: 66px 32px 110px; margin: 0 auto; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section-heading h2 { margin: 0; font-size: 28px; letter-spacing: -.05em; }
.section-heading p { margin: 3px 0 0; color: var(--muted); }
.filter-panel { padding: 22px 24px; margin-bottom: 25px; border: 1px solid var(--line); background: var(--soft); }
.filter-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.filter-row + .filter-row { padding-top: 17px; margin-top: 17px; border-top: 1px solid var(--line); }
.filter-label { min-width: 48px; font-weight: 700; }
.chip-group { display: flex; gap: 7px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px; border: 1px solid #d7d7d7; border-radius: 3px; background: #fff; color: #666; font-size: 13px; }
.chip:has(input:checked) { border-color: var(--navy); background: var(--navy); color: #fff; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.filter-spacer { flex: 1; }
.search-form { display: flex; gap: 8px; min-width: min(100%, 400px); }
.search-form input { width: 100%; min-width: 0; height: 40px; padding: 0 13px; border: 1px solid #d2d2d2; background: #fff; outline: 0; }
.search-form input:focus { border-color: var(--navy); }
.button { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 21px; border: 1px solid transparent; border-radius: 3px; font-weight: 500; white-space: nowrap; }
.button-primary { background: var(--navy); color: #fff; }
.button-primary:hover { background: #0e315f; }
.button-outline { border-color: #bfc5cb; background: #fff; color: #555; }
.button-outline:hover { border-color: var(--navy); color: var(--navy); }
.button-accent { background: var(--accent); color: #fff; }
.button-accent:hover { background: #0049cc; }
.table-wrap { overflow-x: auto; border-top: 2px solid #252525; }
.qa-table { width: 100%; min-width: 850px; border-collapse: collapse; table-layout: fixed; }
.qa-table th { height: 48px; padding: 0 12px; border-bottom: 1px solid #252525; font-weight: 500; }
.qa-table td { height: 62px; padding: 0 12px; border-bottom: 1px solid var(--line); color: #5c5c5c; text-align: center; }
.qa-table tbody tr { cursor: pointer; transition: background .15s ease; }
.qa-table tbody tr:hover { background: #fafafa; }
.qa-table .subject { overflow: hidden; color: #222; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
.subject-link { font-weight: 500; }
.notice-row td { background: #fcfcf8; font-weight: 500; }
.category { display: inline-flex; align-items: center; justify-content: center; min-width: 66px; padding: 3px 7px; border-radius: 2px; background: #f0f4fb; color: var(--navy); font-size: 12px; }
.category.notice { background: #fff6e7; color: #9b6915; }
.lock { display: inline-block; margin-right: 6px; color: #888; font-size: 12px; }
.new-mark { margin-left: 4px; color: var(--accent); font-size: 11px; font-weight: 700; }
.status { display: inline-flex; justify-content: center; min-width: 76px; padding: 3px 7px; border: 1px solid #dadada; border-radius: 2px; color: #666; font-size: 12px; }
.status.done { border-color: #b3ddce; background: #effaf6; color: var(--green); }
.status.review { border-color: #c5d8ef; background: #f2f7fd; color: #356594; }
.table-empty { display: none; padding: 70px 20px; border-bottom: 1px solid var(--line); color: var(--muted); text-align: center; }
.table-actions { display: flex; align-items: center; justify-content: space-between; padding-top: 23px; }
.result-count { color: var(--muted); font-size: 13px; }
.pagination { display: flex; justify-content: center; gap: 5px; margin: 38px 0 0; }
.pagination button { width: 32px; height: 32px; border: 0; background: none; color: #555; }
.pagination button:hover { color: var(--navy); }
.pagination button.active { border-radius: 50%; background: var(--navy); color: #fff; }
.form-card, .detail-card { border-top: 2px solid #242424; }
.form-row { display: grid; grid-template-columns: 145px 1fr; min-height: 68px; border-bottom: 1px solid var(--line); }
.form-label { display: flex; align-items: center; padding: 17px 18px; background: #fafafa; font-weight: 500; }
.required { color: #d74444; }
.form-control { display: flex; align-items: center; min-width: 0; padding: 13px 17px; }
.form-control.column { align-items: stretch; flex-direction: column; gap: 8px; }
.input, .select, .textarea { width: 100%; padding: 10px 12px; border: 1px solid #d5d5d5; border-radius: 2px; background: #fff; outline: 0; }
.input, .select { height: 42px; }
.textarea { min-height: 260px; resize: vertical; line-height: 1.7; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(23, 63, 120, .08); }
.select { max-width: 230px; }
.check { display: inline-flex; align-items: center; gap: 8px; color: #555; }
.check input { width: 17px; height: 17px; accent-color: var(--navy); }
.help-text { color: #888; font-size: 12px; }
.file-input { padding: 8px 0; }
.form-notice { padding: 18px; margin-bottom: 22px; border: 1px solid #d9e3ef; background: #f6f9fd; color: #49617a; }
.form-notice strong { display: block; margin-bottom: 3px; color: #294867; }
.form-error { display: none; padding: 14px 16px; margin-bottom: 18px; border: 1px solid #f0b2b2; background: #fff7f7; color: #b42318; }
.form-footer { display: flex; justify-content: center; gap: 8px; padding-top: 26px; }
.detail-card { padding-bottom: 24px; }
.is-editing .detail-head, .is-editing .detail-body, .is-editing .comment-box { display: none; }
.detail-head { padding: 23px 22px 20px; border-bottom: 1px solid var(--line); }
.detail-title-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.detail-title-line h2 { margin: 0; font-size: 22px; letter-spacing: -.04em; }
.detail-title-line .status { min-width: 82px; padding: 5px 10px; font-size: 13px; font-weight: 700; }
.detail-meta { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 15px; color: #888; font-size: 13px; }
.detail-meta span + span::before { content: ''; display: inline-block; width: 1px; height: 11px; margin: 0 14px 0 0; background: #ddd; vertical-align: -1px; }
.detail-body { min-height: 260px; padding: 38px 22px 56px; white-space: pre-wrap; word-break: break-word; }
.attachments { padding: 16px 22px; border-top: 1px solid var(--line); background: #fafafa; }
.attachments h3 { margin: 0 0 8px; font-size: 14px; }
.attachment-item { padding: 7px 0; color: #555; font-size: 13px; }
.attachments a { color: var(--navy); text-decoration: underline; }
.detail-actions { display: flex; justify-content: space-between; padding: 23px 22px 0; }
.egbim-page #backButton { display: none; }
.egbim-page .form-footer:has(#backButton) { display: none; }
.owner-actions { display: flex; gap: 8px; }
.button-danger { border-color: #c43d3d; background: #c43d3d; color: #fff; }
.button-danger:hover { border-color: #a52f2f; background: #a52f2f; }
.edit-form { padding-top: 24px; border-top: 2px solid #242424; }
.edit-form h3 { margin: 0; padding: 0 22px 18px; font-size: 18px; }
.comment-box { margin-top: 54px; }
.comment-box h3 { padding-bottom: 15px; margin: 0; border-bottom: 2px solid #222; font-size: 17px; }
.comment { padding: 19px 10px; border-bottom: 1px solid var(--line); }
.comment-meta { display: flex; justify-content: space-between; margin-bottom: 7px; color: #777; font-size: 13px; }
.comment-content { white-space: pre-wrap; }
.comment-empty { padding: 32px; border-bottom: 1px solid var(--line); color: #999; text-align: center; }
.comment-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 16px; padding: 20px 10px 0; }
.comment-form .textarea { min-height: 120px; }
.comment-form > .textarea { grid-column: 1 / -1; }
.comment-attachment-input { grid-column: 1; padding-top: 14px; }
.comment-attachment-input input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }
.comment-image-button { height: 42px; padding: 0 21px; font-size: 13px; }
.comment-image-preview, .comment-attachments-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.comment-image-preview-item { width: 104px; overflow: hidden; border: 1px solid #ddd; background: #fafafa; }
.comment-image-preview-item img { display: block; width: 104px; height: 78px; object-fit: cover; }
.comment-image-preview-item span { display: block; overflow: hidden; padding: 5px 6px; color: #666; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.comment-image-link { display: block; width: 124px; }
.comment-image { display: block; width: 124px; height: 94px; border: 1px solid #ddd; object-fit: cover; }
.comment-attachment-name { color: #666; font-size: 13px; }
.comment-form-actions { display: flex; grid-column: 2; align-items: flex-end; justify-content: flex-end; gap: 12px; padding-top: 14px; }
.comment-form-actions .form-error { display: block; flex: 1; margin: 0; }
.comment-form-actions .form-error[hidden] { display: none; }
#commentSubmit { height: 42px; border-color: #000; background: #000; color: #fff; }
#commentSubmit:hover { border-color: #222; background: #222; }
.site-footer { padding: 38px 32px; background: #111; color: #b9b9b9; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; max-width: 1280px; margin: 0 auto; gap: 40px; }
.footer-brand { color: #fff; }
.footer-copy { margin: 5px 0 0; color: #777; font-size: 12px; }
.footer-links { display: flex; gap: 23px; color: #d9d9d9; font-size: 13px; }
.toast { position: fixed; right: 26px; bottom: 26px; z-index: 30; padding: 14px 18px; border-radius: 4px; background: #1c1c1c; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.mobile-menu { display: none; }
/* EG-BIM support page layout */
.qa-list-page, .egbim-page { max-width: 100%; overflow-x: hidden; background: #fff; }
.qa-list-page .site-header { position: absolute; top: 0; right: 0; left: 0; z-index: 10; height: 88px; border-bottom: 0; background: transparent; color: #fff; }
.qa-list-page .header-inner { max-width: none; padding: 0 48px; }
.qa-list-page .brand { color: #fff; font-size: 29px; letter-spacing: -.04em; }
.qa-list-page .brand-mark { width: 38px; height: 27px; border: 0; color: #258be0; font-size: 30px; font-style: italic; }
.qa-list-page .header-tools { gap: 24px; }
.qa-list-page .locale { color: #fff; }
.qa-list-page .locale span { color: rgba(255,255,255,.55); margin: 0 7px; }
.qa-list-page .locale a { color: #fff; }
.qa-list-page .locale a:last-child { color: rgba(255,255,255,.55); }
.qa-list-page .login-link { color: #fff; }
.qa-list-page .login-link [data-auth-name] { display: none; }
.qa-list-page .user-icon { border-color: #fff; }
.qa-list-page .user-icon::after { border-color: #fff; }
.qa-list-page .page-hero, .egbim-page .page-hero { position: relative; display: block; min-height: 482px; height: 482px; overflow: hidden; background: radial-gradient(circle at 53% 47%, rgba(17, 129, 178, .68) 0, rgba(17, 129, 178, .2) 20%, transparent 42%), radial-gradient(circle at 13% 35%, rgba(11, 92, 133, .58) 0, transparent 28%), radial-gradient(circle at 88% 18%, rgba(23, 76, 113, .35) 0, transparent 30%), linear-gradient(115deg, #061c2a 0%, #06121c 52%, #030509 100%); }
.qa-list-page .page-hero::before, .egbim-page .page-hero::before { position: absolute; inset: 0; content: ''; opacity: .22; background-image: radial-gradient(circle, rgba(255,255,255,.75) 0 2px, transparent 3px), linear-gradient(28deg, transparent 48%, rgba(137,211,239,.45) 49%, transparent 50%), linear-gradient(151deg, transparent 48%, rgba(137,211,239,.3) 49%, transparent 50%); background-position: 8% 30%, 0 0, 0 0; background-size: 170px 135px, 240px 190px, 310px 230px; }
.qa-list-page .hero-inner, .egbim-page .hero-inner { position: relative; z-index: 1; padding: 190px 24px 0; text-align: center; }
.qa-list-page .hero-kicker, .egbim-page .hero-kicker { display: none; }
.qa-list-page .page-hero h1, .egbim-page .page-hero h1 { margin: 0 0 4px; color: #fff; font-size: 70px; font-weight: 700; letter-spacing: -.07em; }
.qa-list-page .page-hero p, .egbim-page .page-hero p { color: #fff; font-size: 20px; font-weight: 500; }
.qa-list-page .sub-nav, .egbim-page .sub-nav { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; background: rgba(0, 10, 17, .84); }
.qa-list-page .sub-nav-inner, .egbim-page .sub-nav-inner { width: 100%; max-width: none; }
.qa-list-page .sub-nav a, .egbim-page .sub-nav a { flex: 1 1 50%; padding: 18px 12px; color: #fff; font-size: 16px; font-weight: 700; }
.qa-list-page .sub-nav a[aria-current='page'], .egbim-page .sub-nav a[aria-current='page'] { background: rgba(0, 121, 116, .5); color: #ffc400; }
.qa-list-page .sub-nav a.disabled-tab, .egbim-page .sub-nav a.disabled-tab { cursor: default; }
.qa-list-page .sub-nav a.disabled-tab:hover, .egbim-page .sub-nav a.disabled-tab:hover { background: transparent; color: #fff; }
.qa-list-page .page-shell { width: calc(100% - 80px); max-width: 1200px; padding: 51px 0 62px; margin-right: auto; margin-left: auto; }
.egbim-page .page-shell { padding-top: 51px; }
.egbim-page .section-heading { display: block; margin-bottom: 40px; text-align: center; }
.egbim-page .section-heading h2 { font-size: 30px; }
.egbim-page .section-heading p { display: none; }
.qa-list-heading { margin: 0 0 40px; text-align: center; }
.qa-list-heading h1 { margin: 0; font-size: 30px; line-height: 1.35; letter-spacing: -.06em; }
.qa-list-page .filter-panel { padding: 0; margin: 0 0 40px; border: 0; background: transparent; }
.qa-list-page .filter-row { gap: 8px; flex-wrap: nowrap; }
.qa-list-page .chip-group { gap: 8px; flex: 0 0 auto; }
.qa-list-page .chip { width: 60px; height: 45px; justify-content: center; padding: 0; border-color: #ddd; border-radius: 3px; color: #222; font-size: 15px; }
.qa-list-page .chip:has(input:checked) { border-color: #e8ad00; background: #ffc400; color: #111; }
.qa-list-page .chip input { position: absolute; opacity: 0; pointer-events: none; }
.qa-list-page .check { flex: 0 0 auto; margin-left: 24px; color: #222; font-size: 14px; white-space: nowrap; }
.qa-list-page .check input { width: 16px; height: 16px; margin: 0 7px 0 0; accent-color: #222; }
.qa-list-page .filter-spacer { min-width: 18px; }
.qa-list-page .search-form { width: 450px; min-width: 450px; gap: 7px; }
.qa-list-page .search-form input { height: 45px; padding: 0 12px; border-color: #d8d8d8; color: #333; font-size: 13px; }
.qa-list-page .search-form input::placeholder { color: #b7b7b7; }
.qa-list-page .search-button { width: 88px; height: 45px; padding: 0; border-radius: 3px; background: #000; color: #fff; font-size: 15px; font-weight: 700; }
.qa-list-page .search-button span { margin-right: 3px; font-size: 24px; line-height: 0; vertical-align: -2px; }
.qa-list-page .table-wrap { width: 100%; max-width: 100%; overflow: hidden; border-top: 2px solid #111; }
.qa-list-page .qa-table { display: table; width: 100%; max-width: 100%; min-width: 0 !important; table-layout: fixed; }
.qa-list-page .qa-table th { height: 48px; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #111; color: #111; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.qa-list-page .qa-table td { height: 58px; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #ededed; background: #f3f3f3; color: #3e4650; font-size: 14px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.qa-list-page .qa-table tbody tr:hover { background: transparent; }
.qa-list-page .qa-table tbody tr:hover td { background: #ededed; }
.qa-list-page .qa-table .subject { color: #39434f; }
.qa-list-page .qa-table .subject-link { font-weight: 500; }
.qa-list-page .qa-table .category-cell { white-space: nowrap; }
.qa-list-page .qa-table .category,
.qa-list-page .qa-table .status { padding: 0; border: 0; border-radius: 0; background: transparent; color: inherit; font-size: inherit; font-weight: inherit; }
.qa-list-page .qa-table .status { min-width: 0; }
.qa-list-page .qa-table .notice-row td { background: #f3f3f3; color: #3e4650; }
.qa-list-page .table-empty { background: #f3f3f3; }
.qa-list-page .list-footer { position: relative; min-height: 42px; margin-top: 25px; }
.qa-list-page .list-footer .pagination { margin: 0; }
.qa-list-page .list-footer > .button { position: absolute; top: 0; right: 0; height: 42px; padding: 0 25px; background: #000; color: #fff; font-size: 14px; font-weight: 700; }
@media (max-width: 820px) {
.qa-list-page .site-header { height: 68px; }
.qa-list-page .header-inner { padding: 0 18px; }
.qa-list-page .brand { font-size: 21px; }
.qa-list-page .brand-mark { width: 29px; height: 22px; font-size: 23px; }
.qa-list-page .header-tools { gap: 12px; }
.qa-list-page .page-hero, .egbim-page .page-hero { min-height: 390px; height: 390px; }
.qa-list-page .hero-inner, .egbim-page .hero-inner { padding-top: 145px; }
.qa-list-page .page-hero h1, .egbim-page .page-hero h1 { font-size: 52px; }
.qa-list-page .page-hero p, .egbim-page .page-hero p { font-size: 16px; }
.qa-list-page .sub-nav-inner, .egbim-page .sub-nav-inner { max-width: none; }
.qa-list-page .sub-nav a, .egbim-page .sub-nav a { padding: 14px 10px; font-size: 14px; }
.qa-list-page .page-shell { width: 100%; max-width: none; padding: 39px 14px 55px; }
.qa-list-heading { margin-bottom: 28px; }
.qa-list-heading h1 { font-size: 26px; }
.qa-list-page .filter-row { flex-wrap: wrap; }
.qa-list-page .check { margin-left: 8px; }
.qa-list-page .filter-spacer { display: none; }
.qa-list-page .search-form { width: 100%; min-width: 0; margin-top: 5px; }
.qa-list-page .list-footer { display: flex; min-height: 84px; flex-direction: column; align-items: stretch; gap: 18px; }
.qa-list-page .list-footer .pagination { order: 2; }
.qa-list-page .list-footer > .button { position: static; order: 1; align-self: flex-end; }
}
@media (max-width: 1100px) {
.global-nav { gap: 18px; margin-right: 20px; }
.nav-item { font-size: 14px; }
.header-tools { gap: 12px; }
.brand { font-size: 15px; }
}
@media (max-width: 820px) {
:root { --header-height: 68px; }
.header-inner { padding: 0 18px; }
.global-nav, .locale { display: none; }
.global-nav.mobile-open { position: absolute; top: var(--header-height); right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; height: auto; gap: 0; padding: 8px 18px 18px; margin: 0; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 12px 25px rgba(0, 0, 0, .08); }
.global-nav.mobile-open .nav-item { padding: 13px 0; }
.global-nav.mobile-open .mega-menu { position: static; display: none; width: auto; padding: 10px 0 10px 16px; box-shadow: none; opacity: 1; transform: none; }
.global-nav.mobile-open .package:focus-within .mega-menu, .global-nav.mobile-open .package:hover .mega-menu { display: grid; }
.header-tools { margin-left: auto; }
.mobile-menu { display: block; }
.page-hero { min-height: 185px; }
.page-hero h1 { font-size: 33px; }
.sub-nav-inner { overflow-x: auto; }
.sub-nav a { min-width: 130px; padding: 14px 10px; font-size: 13px; }
.page-shell { padding: 43px 18px 75px; }
.section-heading { display: block; margin-bottom: 22px; }
.section-heading h2 { font-size: 24px; }
.filter-panel { padding: 16px; }
.filter-row { gap: 13px; }
.filter-row + .filter-row { margin-top: 14px; padding-top: 14px; }
.filter-spacer { display: none; }
.search-form { width: 100%; min-width: 0; }
.table-actions { padding-top: 17px; }
.form-row { grid-template-columns: 90px 1fr; }
.form-label, .form-control { padding: 12px 10px; font-size: 13px; }
.detail-title-line { display: block; }
.detail-title-line .status { margin-top: 12px; }
.detail-head, .detail-body, .attachments, .detail-actions { padding-right: 14px; padding-left: 14px; }
.detail-actions { gap: 8px; }
.detail-actions .button { flex: 1; padding: 0 10px; }
.footer-inner { display: block; }
.footer-links { margin-top: 18px; }
.comment-form { grid-template-columns: minmax(0, 1fr); }
.comment-form-actions { grid-column: 1; justify-content: flex-end; }
}
@media (max-width: 480px) {
.brand-mark { width: 31px; height: 21px; font-size: 12px; }
.brand { gap: 5px; font-size: 13px; }
.login-link { font-size: 0; }
.login-link .user-icon { margin-right: 8px; }
.button { padding: 0 14px; }
.form-footer { justify-content: stretch; }
.form-footer .button { flex: 1; }
}