/* ══════════════════════════════════════════════════════════════════════════
   h5u-project.css — 병합 템플릿 위에 얹는 프로젝트 레이어
   ══════════════════════════════════════════════════════════════════════════

   h5u.css 는 원본 그대로여야 하므로(스크립트 생성물) 고치지 않는다. 프로젝트
   요구사항은 전부 이 파일에서 덮어쓴다.

     1. 직각 UI — 원본은 버튼·입력·타일에 border-radius 를 준다. 전부 0 으로.
     2. 나브바 액센트 스위치 — Spectral nav 항목 자리에 들어가는 색 견본 버튼.
     3. 타일 그리드 밀도 — 원본 40%/60% 2열은 데모용(6개)이다. 링크가 수십 개인
        카탈로그에서는 한 화면에 담기는 수가 너무 적어 3열 기준으로 조정한다.
        (Phase B 에서 데이터 양에 맞춰 다시 조정)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 1. 직각 ─────────────────────────────────────────────────────────────── */

input[type='submit'],
input[type='reset'],
input[type='button'],
button,
.button,
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='search'],
input[type='url'],
select,
textarea,
.box,
.image,
.image img,
.tiles article {
	border-radius: 0 !important;
}

/* ── 2. (삭제) 나브바 액센트 스위치 ────────────────────────────────────────

   나브바를 Spectral 원본에서 자체 2026 나브바로 교체하면서 이 규칙들의 대상(`#nav`)이
   사라졌다. 스위치 스타일은 `shell2026.css` 가 `#topbar .swatch` / `.sidenav-foot .swatch`
   로 갖는다. 대상 없는 규칙을 남겨 두면 "왜 안 먹지" 를 다음 사람이 다시 추적한다.
   ──────────────────────────────────────────────────────────────────────── */

/* ── 3. 타일 밀도 ────────────────────────────────────────────────────────── */

@media screen and (min-width: 981px) {

	.tiles article,
	.tiles article:nth-child(4n - 1),
	.tiles article:nth-child(4n - 2) {
		width: 33.3333%;
	}

	.tiles article {
		height: auto;
		max-height: none;
		min-height: 18em;
		padding: 3em 2.5em 2em 2.5em;
	}

}
