/* ==========================================================================
   Section: About / Credentials. Ported from about-styles.css.
   ========================================================================== */

.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.cred {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px;
	display: flex; flex-direction: column; gap: 7px; transition: transform .25s ease, box-shadow .25s ease;
}
.cred:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cred .mark { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cred .mark::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }
.cred h3 { font-size: 18px; line-height: 1.2; }
.cred p { font-size: 14.5px; color: var(--body); }
.cred .cred-link { display: inline-block; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--cyan); text-decoration: none; transition: gap .2s ease, opacity .2s ease; }
.cred .cred-link:hover { opacity: 0.8; }
.cred .cred-inline { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(24,173,231,0.3); transition: border-color .2s ease; }
.cred .cred-inline:hover { border-bottom-color: var(--cyan); }
.honest {
	margin-top: 28px; max-width: 64ch; font-size: 16px; color: var(--body); font-style: italic;
	padding-left: 20px; border-left: 3px solid; border-image: var(--grad) 1;
}

@media (max-width: 1080px) {
	.cred-grid { grid-template-columns: 1fr; }
}
