/*
 * KrisMcCabe Child — custom.css
 *
 * WHY this file exists instead of Customizer:
 *   Astra free tier does not expose colour palette slots, advanced typography
 *   controls, or button styling in Customizer. We set those here using CSS
 *   custom properties so they cascade correctly and remain overridable.
 */

/* ── Design tokens ─────────────────────────────────────────────────────────*/
:root {
	--kmc-navy:       #0F172A;
	--kmc-navy-mid:   #1E293B;
	--kmc-accent:     #2563EB;
	--kmc-accent-hv:  #1D4ED8;
	--kmc-surface:    #F8FAFC;
	--kmc-surface-2:  #F1F5F9;
	--kmc-text:       #334155;
	--kmc-text-muted: #64748B;
	--kmc-border:     #E2E8F0;
	--kmc-radius:     8px;
}

/* ── Base ──────────────────────────────────────────────────────────────────*/
body {
	background-color: var(--kmc-surface) !important;
	color: var(--kmc-text);
}

/* ── Typography ─────────────────────────────────────────────────────────────
   WHY: Astra free limits Google Fonts selection and weight controls.        */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body, button, input, select, textarea {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .site-title, .entry-title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--kmc-navy);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem);    font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem);  font-weight: 700; }
h3 { font-size: 1.25rem;                   font-weight: 600; }
h4 { font-size: 1.1rem;                    font-weight: 600; }

a { color: var(--kmc-accent); text-decoration: none; }
a:hover { color: var(--kmc-accent-hv); text-decoration: underline; }

/* ── Header ─────────────────────────────────────────────────────────────────
   WHY: Astra free applies its own header/nav colours at high specificity.
   We need !important on every nav-related rule to reliably override them.   */
#masthead,
.site-header,
.ast-primary-header-bar,
.main-header-bar,
.ast-header-sections-navigation {
	background-color: var(--kmc-navy) !important;
}

/* Site title */
.site-title a,
.site-title a:visited {
	color: #ffffff !important;
}

/* All nav links */
.main-header-menu .menu-item > a,
.main-header-menu .menu-item > .ast-menu-toggle,
.main-navigation .menu-item > a,
.ast-header-sections-navigation .menu-item > a,
#site-navigation .menu-item > a,
.primary-navigation .menu-item > a {
	color: #ffffff !important;
	opacity: 1 !important;
}

/* Hover + active */
.main-header-menu .menu-item > a:hover,
.main-header-menu .current-menu-item > a,
.main-header-menu .current_page_item > a,
.main-navigation .menu-item > a:hover,
.main-navigation .current-menu-item > a,
#site-navigation .menu-item > a:hover,
#site-navigation .current-menu-item > a {
	color: var(--kmc-accent) !important;
	opacity: 1 !important;
}

/* Mobile hamburger icon */
.ast-mobile-menu-trigger-fill,
button.menu-toggle,
.menu-toggle { color: #ffffff !important; }

/* ── Buttons ─────────────────────────────────────────────────────────────────*/
.wp-block-button__link,
.ast-button,
button[type="submit"],
input[type="submit"] {
	background-color: var(--kmc-accent) !important;
	color: #fff !important;
	border: none;
	border-radius: var(--kmc-radius) !important;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 15px;
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
	text-decoration: none !important;
}

.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background-color: var(--kmc-accent-hv) !important;
	box-shadow: 0 4px 12px rgba(37,99,235,0.3);
	color: #fff !important;
}

/* Ghost button */
.kmc-btn-ghost .wp-block-button__link {
	background: transparent !important;
	color: #ffffff !important;
	border: 1px solid rgba(255,255,255,0.4) !important;
	box-shadow: none !important;
}
.kmc-btn-ghost .wp-block-button__link:hover {
	background: rgba(255,255,255,0.1) !important;
	border-color: rgba(255,255,255,0.7) !important;
	box-shadow: none !important;
}

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.site-footer, #colophon {
	background-color: var(--kmc-navy);
	color: #94A3B8;
	font-size: 13px;
}
.site-footer a { color: #93C5FD; }
.site-footer a:hover { color: #fff; }

/* ── Remove Astra page title on full-width pages ─────────────────────────────
   WHY: Full-width template still renders the page title in the entry-header.  */
.ast-page-builder-template .entry-header,
.ast-full-width-layout .entry-header { display: none; }

.ast-page-builder-template .entry-content,
.ast-full-width-layout .entry-content { padding: 0 !important; margin: 0 !important; }

/* ── Fix: columns not displaying as rows ─────────────────────────────────────
   WHY: Gutenberg's constrained group layout can interfere with wp-block-columns
   flex display in Astra. We explicitly restore it for our named sections.     */
@media (min-width: 782px) {
	.kmc-hero .wp-block-columns,
	.kmc-stats-strip .wp-block-columns,
	.kmc-cards.wp-block-columns,
	.kmc-about-intro.wp-block-columns,
	.kmc-timeline-cols.wp-block-columns,
	.kmc-contact-cols.wp-block-columns {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
	}

	.kmc-hero .wp-block-columns {
		align-items: center !important;
		gap: 60px !important;
	}

	/* FIX: was "align-items: center !important;" — centring caused $1.9B (and
	   its longer label) to sit at a different vertical position to the other
	   two stats whenever the long label wrapped onto a second line on a
	   compacted window. flex-start pins every number to the same top edge
	   regardless of how many lines its label wraps to. */
	.kmc-stats-strip .wp-block-columns {
		align-items: flex-start !important;
	}

	.kmc-cards.wp-block-columns {
		align-items: stretch !important;
		gap: 24px !important;
	}

	.kmc-about-intro.wp-block-columns {
		align-items: flex-start !important;
		gap: 60px !important;
	}

	.kmc-timeline-cols.wp-block-columns {
		align-items: flex-start !important;
		gap: 48px !important;
	}

	.kmc-contact-cols.wp-block-columns {
		align-items: flex-start !important;
		gap: 48px !important;
	}

	.kmc-hero .wp-block-column:first-child { flex: 0 0 58%; max-width: 58%; }
	.kmc-hero .wp-block-column:last-child  { flex: 0 0 38%; max-width: 38%; }
}

/* ── HOME: Hero ──────────────────────────────────────────────────────────────*/
.kmc-hero {
	background-color: var(--kmc-navy);
	padding: 96px 40px 80px;
}

.kmc-eyebrow {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase;
	color: #93C5FD !important;
	margin-bottom: 18px !important;
}

.kmc-hero h1 {
	color: #ffffff;
	font-size: clamp(2.2rem, 4.5vw, 3rem);
	margin-bottom: 24px;
}

.kmc-hero-lead {
	color: #94A3B8 !important;
	font-size: 17px !important;
	line-height: 1.75 !important;
	margin-bottom: 36px !important;
}

.kmc-hero-photo img {
	width: 300px;
	height: 300px;
	object-fit: cover;
	object-position: top center;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(255,255,255,0.12), 0 24px 64px rgba(0,0,0,0.45);
	display: block;
	margin: 0 auto;
}

/* ── HOME: Stats strip ───────────────────────────────────────────────────────*/
.kmc-stats-strip {
	background-color: var(--kmc-navy-mid);
	padding: 52px 40px;
}

/* FIX: added flex: 1 1 0; and min-width: 0; so all three stat columns shrink
   at the same rate and hit their wrap point together, rather than the
   longer-content column behaving differently to the other two. */
.kmc-stat {
	padding: 0 28px;
	border-right: 1px solid rgba(255,255,255,0.1);
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
}
.kmc-stat:first-child { padding-left: 0; }
.kmc-stat:last-child  { border-right: none; padding-right: 0; }

/* FIX: font-size now scales slightly on narrower widths via clamp(), giving
   the numbers a bit more breathing room before things get tight, instead of
   staying rigidly at 40px right up to the wrap point. */
.kmc-stat-number {
	font-size: clamp(28px, 4vw, 40px) !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: -0.02em;
	color: #ffffff !important;
	margin-bottom: 10px !important;
}

.kmc-stat-label {
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #93C5FD !important;
	margin: 0 !important;
}

/* ── HOME: Content sections ──────────────────────────────────────────────────*/
.kmc-section {
	background-color: #ffffff;
	padding: 80px 40px;
}

.kmc-section-tinted {
	background-color: var(--kmc-surface-2);
	padding: 80px 40px;
}

.kmc-section h2,
.kmc-section-tinted h2 {
	text-align: center;
	margin-bottom: 14px;
}

.kmc-section-lead {
	color: var(--kmc-text-muted) !important;
	font-size: 17px !important;
	text-align: center;
	max-width: 560px;
	margin: 0 auto 52px !important;
	line-height: 1.7 !important;
}

/* Inner max-width wrapper for section content */
.kmc-section > .wp-block-group__inner-container,
.kmc-section-tinted > .wp-block-group__inner-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* ── HOME: Cards ─────────────────────────────────────────────────────────────*/
.kmc-card.wp-block-column {
	background: #ffffff;
	border: 1px solid var(--kmc-border);
	border-radius: 12px;
	padding: 28px !important;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kmc-section-tinted .kmc-card.wp-block-column {
	background: #ffffff;
}

.kmc-card.wp-block-column:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.kmc-card h3 { font-size: 18px; margin-bottom: 12px; }

.kmc-card p,
.kmc-card .wp-block-paragraph {
	color: #64748B !important;
	font-size: 14px;
	line-height: 1.75;
	margin: 0 !important;
}

.kmc-card-tag {
	font-size: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--kmc-accent) !important;
	margin-bottom: 10px !important;
}

.kmc-card-link { margin-top: 20px !important; margin-bottom: 0 !important; }
.kmc-card-link a { font-size: 13px; font-weight: 600; color: var(--kmc-accent); }

/* ── HOME: CTA bar ────────────────────────────────────────────────────────────*/
.kmc-cta-bar {
	background-color: var(--kmc-navy);
	padding: 96px 40px;
	text-align: center;
}

.kmc-cta-bar h2 { color: #ffffff; margin-bottom: 16px; }

.kmc-cta-bar p {
	color: #94A3B8 !important;
	font-size: 17px !important;
	max-width: 520px;
	margin: 0 auto 36px !important;
	line-height: 1.7 !important;
}

/* ── Responsive ───────────────────────────────────────────────────────────────*/
@media (max-width: 781px) {
	.kmc-hero { padding: 52px 20px; }

	.kmc-hero-photo img {
		width: 180px;
		height: 180px;
		margin: 0 auto 32px;
	}

	.kmc-stats-strip { padding: 36px 20px; }

	.kmc-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		padding: 16px 0;
	}
	.kmc-stat:last-child { border-bottom: none; }

	.kmc-section,
	.kmc-section-tinted { padding: 52px 20px; }

	.kmc-cta-bar { padding: 60px 20px; }
}

/* ── ABOUT: Career timeline ───────────────────────────────────────────────────*/
.kmc-timeline { position: relative; padding-left: 28px; margin-top: 12px; }
.kmc-timeline::before {
	content: '';
	position: absolute;
	left: 6px; top: 6px; bottom: 6px;
	width: 2px;
	background: var(--kmc-border);
}

.kmc-timeline-item { position: relative; margin-bottom: 40px; }
.kmc-timeline-item:last-child { margin-bottom: 0; }

.kmc-timeline-item::before {
	content: '';
	position: absolute;
	left: -26px; top: 6px;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--kmc-accent);
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px var(--kmc-accent);
}

.kmc-timeline-role {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: var(--kmc-navy) !important;
	margin-bottom: 2px !important;
}

.kmc-timeline-company {
	font-size: 13px !important;
	color: var(--kmc-accent) !important;
	font-weight: 600 !important;
	margin-bottom: 2px !important;
}

.kmc-timeline-dates {
	font-size: 12px !important;
	color: var(--kmc-text-muted) !important;
	margin-bottom: 10px !important;
}

.kmc-timeline-item p {
	font-size: 14px !important;
	color: var(--kmc-text-muted) !important;
	line-height: 1.75 !important;
	margin-bottom: 0 !important;
}

/* ── ABOUT: Skills grid ───────────────────────────────────────────────────────*/
.kmc-skills-grid.wp-block-columns {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 16px !important;
}

.kmc-skill-group.wp-block-column {
	background: #fff;
	border: 1px solid var(--kmc-border);
	border-radius: 10px;
	padding: 20px !important;
	flex: 1 1 200px;
}

.kmc-skill-group h4 {
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--kmc-accent) !important;
	margin-bottom: 10px !important;
}

.kmc-skill-group p {
	font-size: 13px !important;
	color: var(--kmc-text) !important;
	line-height: 1.7 !important;
	margin: 0 !important;
}

/* ── ABOUT: At-a-glance box ──────────────────────────────────────────────────*/
.kmc-at-a-glance {
	background: var(--kmc-surface-2);
	border-radius: 12px;
	padding: 24px;
	margin-top: 0;
}
.kmc-at-a-glance h3 {
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--kmc-text-muted) !important;
	margin-bottom: 14px !important;
}
.kmc-at-a-glance ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.kmc-at-a-glance li {
	font-size: 14px !important;
	color: var(--kmc-text) !important;
	line-height: 2.1 !important;
	padding: 0 !important;
}

/* ── ABOUT: About photo ───────────────────────────────────────────────────────*/
.kmc-about-photo img {
	border-radius: 12px;
	width: 100%;
	max-width: 380px;
	display: block;
	margin: 0 auto 28px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── PORTFOLIO: Signature project cards ──────────────────────────────────────*/
.kmc-project-card {
	background: #fff;
	border: 1px solid var(--kmc-border);
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 28px;
	transition: box-shadow 0.2s ease;
}
.kmc-project-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.kmc-project-card:last-child { margin-bottom: 0; }

.kmc-project-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.kmc-project-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--kmc-accent);
	background: rgba(37,99,235,0.08);
	padding: 4px 10px;
	border-radius: 4px;
	display: inline-block;
}
.kmc-project-dates {
	font-size: 12px;
	color: var(--kmc-text-muted);
	font-weight: 500;
}
.kmc-project-card h3 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--kmc-navy) !important;
	margin-bottom: 6px !important;
}
.kmc-project-company {
	font-size: 13px !important;
	color: var(--kmc-accent) !important;
	font-weight: 600 !important;
	margin-bottom: 12px !important;
}
.kmc-project-summary {
	color: var(--kmc-text-muted) !important;
	font-size: 14px !important;
	line-height: 1.75 !important;
	margin-bottom: 0 !important;
}
.kmc-project-outcomes {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	border-top: 1px solid var(--kmc-border);
	padding-top: 16px;
}
.kmc-project-outcomes li {
	font-size: 13px;
	color: var(--kmc-text);
	line-height: 1.8;
	padding-left: 20px;
	position: relative;
}
.kmc-project-outcomes li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #16A34A;
	font-weight: 700;
}

/* ── PORTFOLIO: Projects grid ─────────────────────────────────────────────────*/
.kmc-projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 8px;
}
@media (max-width: 900px) {
	.kmc-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.kmc-projects-grid { grid-template-columns: 1fr; }
}
.kmc-project-mini,
.kmc-projects-grid > div {
	background: #fff !important;
	border: 1px solid var(--kmc-border);
	border-radius: 10px;
	padding: 22px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.kmc-project-mini:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.kmc-project-mini h4 {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--kmc-navy) !important;
	margin: 10px 0 4px !important;
	line-height: 1.3 !important;
}
.kmc-project-mini .kmc-project-company {
	font-size: 12px !important;
	margin-bottom: 8px !important;
}
.kmc-project-mini p {
	font-size: 13px !important;
	color: var(--kmc-text-muted) !important;
	line-height: 1.65 !important;
	margin: 0 !important;
	text-transform: none !important;
	font-weight: 400 !important;
}
.kmc-project-mini h4 {
	text-transform: none !important;
}

/* ── CERTIFICATIONS ──────────────────────────────────────────────────────────*/
.kmc-trailhead-banner {
	background: linear-gradient(135deg, #00A1E0 0%, #032D60 100%);
	border-radius: 12px;
	padding: 36px 40px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 48px;
}
.kmc-th-item { text-align: center; }
.kmc-th-number {
	display: block;
	font-size: 40px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}
.kmc-th-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.75);
	margin-top: 8px;
}

.kmc-cert-group { margin-bottom: 48px; }
.kmc-cert-group:last-child { margin-bottom: 0; }
.kmc-cert-group-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--kmc-text-muted);
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--kmc-border);
}
.kmc-cert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}
.kmc-cert-badge {
	background: #fff;
	border: 1px solid var(--kmc-border);
	border-radius: 10px;
	border-top: 3px solid var(--kmc-accent);
	padding: 18px 16px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.kmc-cert-badge:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.kmc-cert-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--kmc-navy);
	line-height: 1.4;
	margin: 0;
}

/* Issuer colour accents */
.kmc-cert-sf  { border-top-color: #00A1E0; }
.kmc-cert-aws { border-top-color: #FF9900; }
.kmc-cert-az  { border-top-color: #0078D4; }
.kmc-cert-gcp { border-top-color: #4285F4; }
.kmc-cert-isc { border-top-color: #1B3A6B; }
.kmc-cert-bcs { border-top-color: #6B21A8; }

/* ── CONTACT ─────────────────────────────────────────────────────────────────*/
.kmc-contact-info {
	padding-right: 20px;
}
.kmc-contact-info h3 {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--kmc-navy) !important;
	margin-bottom: 8px !important;
}
.kmc-contact-info p {
	font-size: 15px !important;
	color: var(--kmc-text-muted) !important;
	line-height: 1.75 !important;
	margin-bottom: 32px !important;
}
.kmc-contact-links {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 40px !important;
}
.kmc-contact-links li {
	margin-bottom: 16px !important;
}
.kmc-contact-links a {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--kmc-navy) !important;
	text-decoration: none !important;
	padding: 16px 20px;
	border: 1px solid var(--kmc-border);
	border-radius: 10px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.kmc-contact-links a:hover {
	border-color: var(--kmc-accent);
	box-shadow: 0 4px 12px rgba(37,99,235,0.1);
	text-decoration: none !important;
}
.kmc-contact-links .kmc-link-icon {
	font-size: 20px;
	line-height: 1;
}
.kmc-contact-links .kmc-link-sub {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--kmc-text-muted);
	margin-top: 2px;
}

.kmc-contact-form-wrap {
	background: var(--kmc-surface-2);
	border-radius: 12px;
	padding: 36px;
}
.kmc-contact-form-wrap h3 {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: var(--kmc-navy) !important;
	margin-bottom: 24px !important;
}

/* WPForms overrides */
.kmc-contact-form-wrap .wpforms-field input,
.kmc-contact-form-wrap .wpforms-field textarea,
.kmc-contact-form-wrap .wpforms-field select {
	border: 1px solid var(--kmc-border) !important;
	border-radius: var(--kmc-radius) !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	padding: 10px 14px !important;
	background: #fff !important;
	color: var(--kmc-text) !important;
	box-shadow: none !important;
}
.kmc-contact-form-wrap .wpforms-field input:focus,
.kmc-contact-form-wrap .wpforms-field textarea:focus {
	border-color: var(--kmc-accent) !important;
	outline: none !important;
}
.kmc-contact-form-wrap .wpforms-field label {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--kmc-navy) !important;
}
.kmc-contact-form-wrap .wpforms-submit-container button {
	background-color: var(--kmc-accent) !important;
	border-radius: var(--kmc-radius) !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	padding: 12px 28px !important;
}

/* ── Accessibility ────────────────────────────────────────────────────────────*/
.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px; padding: 0;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
