|
154 | 154 | line-height: 1.7; |
155 | 155 | opacity: 0.85; |
156 | 156 | } |
| 157 | +.definitions { |
| 158 | + display: flex; |
| 159 | + gap: 20px; |
| 160 | + max-width: 700px; |
| 161 | + margin: 24px auto; |
| 162 | + position: relative; |
| 163 | + z-index: 1; |
| 164 | +} |
| 165 | +.def-card { |
| 166 | + flex: 1; |
| 167 | + padding: 16px 20px; |
| 168 | + border-radius: 10px; |
| 169 | + border: 1px solid var(--border); |
| 170 | + background: var(--bg-card); |
| 171 | + text-align: left; |
| 172 | +} |
| 173 | +.def-term { |
| 174 | + font-family: var(--font-mono); |
| 175 | + font-size: 0.75rem; |
| 176 | + font-weight: 700; |
| 177 | + letter-spacing: 2px; |
| 178 | + text-transform: uppercase; |
| 179 | + color: var(--orange); |
| 180 | + display: block; |
| 181 | + margin-bottom: 6px; |
| 182 | +} |
| 183 | +.def-card p { |
| 184 | + font-size: 0.85rem; |
| 185 | + color: var(--text-dim); |
| 186 | + line-height: 1.6; |
| 187 | + margin: 0; |
| 188 | +} |
| 189 | +.def-card a { |
| 190 | + color: var(--blue); |
| 191 | + text-decoration: none; |
| 192 | + font-size: 0.8rem; |
| 193 | +} |
| 194 | +.def-card a:hover { text-decoration: underline; } |
157 | 195 | .page-subtitle { |
158 | 196 | font-family: var(--font-mono); |
159 | 197 | font-size: 0.9rem; |
|
356 | 394 | @media (max-width: 768px) { |
357 | 395 | .page-header { padding: 60px 16px 40px; } |
358 | 396 | .page-title { font-size: clamp(1.6rem, 6vw, 2.5rem); } |
| 397 | + .definitions { flex-direction: column; gap: 12px; } |
359 | 398 | .table-wrapper { padding: 0 12px; } |
360 | 399 | table { font-size: 0.82rem; } |
361 | 400 | thead th { padding: 14px 14px; font-size: 0.9rem; } |
|
381 | 420 | <a href="https://grc.engineering" class="back-link">← grc.engineering</a> |
382 | 421 | <h1 class="page-title">The <span class="highlight">GRC Engineering</span> Cheat Sheet</h1> |
383 | 422 | <p class="page-desc">For decades, auditors and governments defined and molded Legacy GRC in their image. Today, engineers and analysts are transforming it into something new: GRC Engineering. This cheat sheet outlines what makes GRC Engineering different.</p> |
| 423 | + <div class="definitions"> |
| 424 | + <div class="def-card"> |
| 425 | + <span class="def-term">GRC</span> |
| 426 | + <p>Governance, risk, and compliance (GRC) are three related facets that aim to assure an organization reliably achieves objectives, addresses uncertainty and acts with integrity. <a href="https://en.wikipedia.org/wiki/Governance,_risk,_and_compliance" target="_blank" rel="noopener">Wikipedia</a></p> |
| 427 | + </div> |
| 428 | + <div class="def-card"> |
| 429 | + <span class="def-term">Engineering</span> |
| 430 | + <p>Engineering is the practice of using natural science, mathematics, and the engineering design process to solve problems within technology, increase efficiency and productivity, and improve systems. <a href="https://en.wikipedia.org/wiki/Engineering" target="_blank" rel="noopener">Wikipedia</a></p> |
| 431 | + </div> |
| 432 | + </div> |
384 | 433 | <p class="page-subtitle">Legacy GRC vs. GRC Engineering in practice</p> |
385 | 434 | </header> |
386 | 435 |
|
|
0 commit comments