/* ICONC4H — utility classes used by block patterns & parts.
   Design tokens (color, type, spacing) come from theme.json presets. */

html { scroll-behavior: smooth; }

.ich-emblem svg { width: 32px; height: 32px; display: block; }
.ich-header { position: sticky; top: 0; z-index: 100; }

.ich-eyebrow {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(201,145,58,.13); border: .5px solid rgba(201,145,58,.4);
	border-radius: 20px; padding: 6px 15px;
	font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600;
	letter-spacing: .08em; color: var(--wp--preset--color--gold);
}
.ich-label {
	font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 600;
	letter-spacing: .2em; text-transform: uppercase; margin-bottom: .6rem; display: block;
}
.ich-label.is-gold { color: var(--wp--preset--color--gold); }
.ich-label.is-teal { color: var(--wp--preset--color--teal); }
.ich-rule { width: 40px; height: 2px; background: var(--wp--preset--color--gold); margin: 1rem 0 1.4rem; }
.ti { vertical-align: -2px; line-height: 1; }
.ich-card { background: #fff; border: .5px solid var(--wp--preset--color--border); border-radius: 10px; transition: .15s; }
.ich-card:hover { border-color: var(--wp--preset--color--gold); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.ich-panel-navy { background: linear-gradient(140deg, var(--wp--preset--color--navy), var(--wp--preset--color--navy-dark)); color: #fff; }
.ich-footer-emblem svg { width: 34px; height: 34px; margin: 0 auto .5rem; display: block; }
@media (max-width: 781px) { .ich-header .ich-sub { display: none; } }

/* Download / info-packet grid (used by the download-cards pattern) */
.ich-dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.ich-dl-card { display: flex; align-items: center; gap: 14px; background: #fff; border: .5px solid var(--wp--preset--color--border); border-radius: 10px; padding: 1.1rem 1.3rem; text-decoration: none; transition: .15s; }
.ich-dl-card:hover { border-color: var(--wp--preset--color--gold); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.ich-dl-ic { width: 42px; height: 42px; border-radius: 9px; background: var(--wp--preset--color--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ich-dl-ic i { font-size: 20px; color: var(--wp--preset--color--gold); }
.ich-dl-t h4 { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; color: var(--wp--preset--color--navy); margin: 0 0 1px; }
.ich-dl-t span { font-size: 12px; color: var(--wp--preset--color--muted); }
.ich-dl-arrow { margin-left: auto; color: var(--wp--preset--color--gold); font-size: 18px; }

/* Contact info rows */
.ich-cinfo .row { display: flex; gap: 14px; align-items: flex-start; padding: 1.1rem 0; border-bottom: .5px solid var(--wp--preset--color--border); }
.ich-cinfo .row:last-child { border-bottom: none; }
.ich-cinfo .ic { width: 42px; height: 42px; border-radius: 9px; background: var(--wp--preset--color--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ich-cinfo .ic i { font-size: 20px; color: var(--wp--preset--color--gold); }
.ich-cinfo h4 { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wp--preset--color--muted); margin: 0 0 3px; }
.ich-cinfo .val { font-size: 15px; color: var(--wp--preset--color--navy); font-weight: 500; }
