/*
Theme Name: IQC International
Theme URI: https://iqc.co.uk/
Author: IQC International
Author URI: https://iqc.co.uk/
Description: A technical catalogue theme for IQC International, supplier of military and aerospace connectors, contacts, tooling and accessories since 1984. Built as a WooCommerce-ready foundation with a bespoke homepage.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iqc
Tags: business, e-commerce, custom-logo, custom-menu, featured-images, right-sidebar, block-styles, wide-blocks
*/

/* ---------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------- */

:root {
	--iqc-blue: #2528a7;
	--iqc-blue-deep: #14166b;
	--iqc-blue-tint: #eceefb;
	--iqc-red: #fe191e;
	--iqc-red-deep: #d0080d;
	--paper: #f5f6f8;
	--ink: #14161f;
	--ink-soft: #4a4f63;
	--rule: #c9ccda;
	--rule-soft: #e2e4ee;
	--white: #fff;

	--font-sans: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	--wrap: 1240px;
	--gutter: 24px;
	--radius: 2px;

	--step-0: 1rem;
	--step-1: 1.125rem;
	--step-2: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
	--step-3: clamp(1.6rem, 1.3rem + 1.3vw, 2.2rem);
	--step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.5rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: var(--step-0);
	font-weight: 400;
	line-height: 1.6;
	font-synthesis-weight: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--iqc-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--iqc-red-deep);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--iqc-blue-deep);
	text-wrap: balance;
}

h1 {
	font-size: var(--step-4);
}

h2 {
	font-size: var(--step-3);
}

h3 {
	font-size: var(--step-2);
}

p {
	margin: 0 0 1em;
	max-width: 66ch;
}

:focus-visible {
	outline: 3px solid var(--iqc-red);
	outline-offset: 2px;
}

.iqc-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--white);
	color: var(--iqc-blue-deep);
	padding: 12px 20px;
	font-weight: 600;
}

.iqc-skip:focus {
	left: 8px;
	top: 8px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.iqc-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* A part number, anywhere it appears. */
.pn {
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 0.94em;
	letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------
   2. Buttons
   --------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-family: inherit;
	font-size: var(--step-0);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-red {
	background: var(--iqc-red);
	border-color: var(--iqc-red);
	color: var(--white);
}

.btn-red:hover {
	background: var(--iqc-red-deep);
	border-color: var(--iqc-red-deep);
	color: var(--white);
}

.btn-blue {
	background: var(--iqc-blue);
	border-color: var(--iqc-blue);
	color: var(--white);
}

.btn-blue:hover {
	background: var(--iqc-blue-deep);
	border-color: var(--iqc-blue-deep);
	color: var(--white);
}

.btn-outline {
	background: transparent;
	border-color: var(--iqc-blue);
	color: var(--iqc-blue);
}

.btn-outline:hover {
	background: var(--iqc-blue);
	color: var(--white);
}

.btn-ghost-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--white);
}

.btn-ghost-light:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--iqc-blue-deep);
}

/* ---------------------------------------------------------------
   3. Utility bar and header
   --------------------------------------------------------------- */

.iqc-utility {
	background: var(--iqc-blue-deep);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.8125rem;
	line-height: 1.4;
}

.iqc-utility .iqc-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 28px;
	min-height: 40px;
	padding-block: 8px;
}

.iqc-utility p {
	margin: 0;
	max-width: none;
}

.iqc-utility a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
}

.iqc-utility a:hover {
	color: var(--white);
	text-decoration: underline;
}

.iqc-utility-spacer {
	margin-left: auto;
}

.iqc-header {
	position: relative;
	background: var(--white);
	border-bottom: 1px solid var(--rule);
}

.iqc-header .iqc-wrap {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-block: 16px;
}

.iqc-brand {
	display: block;
	flex: 0 0 auto;
	line-height: 0;
}

.iqc-brand img {
	width: auto;
	height: 62px;
}

.iqc-brand-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--iqc-blue);
	line-height: 1.1;
	text-decoration: none;
}

.iqc-header-right {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
}

.iqc-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iqc-nav a {
	display: block;
	padding: 10px 12px;
	color: var(--iqc-blue-deep);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

.iqc-nav a:hover,
.iqc-nav .current-menu-item > a {
	color: var(--iqc-blue);
	border-bottom-color: var(--iqc-red);
}

.iqc-nav-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	padding: 10px 14px;
	background: var(--white);
	border: 2px solid var(--iqc-blue);
	border-radius: var(--radius);
	color: var(--iqc-blue);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.iqc-nav-toggle span {
	position: relative;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.iqc-nav-toggle span::before,
.iqc-nav-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.iqc-nav-toggle span::before {
	top: -6px;
}

.iqc-nav-toggle span::after {
	top: 6px;
}

/* ---------------------------------------------------------------
   4. Hero
   --------------------------------------------------------------- */

.iqc-hero {
	background: var(--paper);
	border-bottom: 1px solid var(--rule);
}

.iqc-hero > .iqc-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 56px;
	padding-block: 72px;
}

.iqc-hero h1 {
	margin-bottom: 20px;
}

.iqc-hero-lede {
	font-size: var(--step-1);
	color: var(--ink-soft);
	max-width: 52ch;
}

.iqc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.iqc-hero-figure {
	position: relative;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--iqc-blue-deep);
}

.iqc-hero-figure img {
	width: 100%;
	aspect-ratio: 7 / 5;
	object-fit: cover;
}

/* the one page-load moment */
.iqc-hero-figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--iqc-blue-deep);
	transform-origin: right center;
	animation: iqc-reveal 700ms cubic-bezier(0.65, 0, 0.35, 1) 120ms both;
}

@keyframes iqc-reveal {
	from {
		transform: scaleX(1);
	}
	to {
		transform: scaleX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.iqc-hero-figure::after {
		animation: none;
		display: none;
	}
}

/* trust strip under the hero */

.iqc-trust {
	background: var(--iqc-blue-deep);
	color: var(--white);
}

.iqc-trust dl {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 4px 40px;
	margin: 0;
	padding-block: 22px 24px;
}

.iqc-trust dt {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
}

.iqc-trust dd {
	margin: 2px 0 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--white);
}

/* ---------------------------------------------------------------
   5. Sections
   --------------------------------------------------------------- */

.iqc-section {
	padding-block: 76px;
}

.iqc-section-head {
	max-width: 64ch;
	margin-bottom: 40px;
}

.iqc-section-head p {
	color: var(--ink-soft);
	margin-bottom: 0;
}

/* connector ranges */

.iqc-range-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.iqc-range {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
}

.iqc-range-media {
	display: block;
	background: var(--paper);
	border-bottom: 1px solid var(--rule);
}

.iqc-range-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.iqc-range-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 24px 26px;
}

.iqc-range-desig {
	margin: 0 0 10px;
	font-size: 0.8125rem;
	color: var(--iqc-red-deep);
	font-weight: 500;
}

.iqc-range h3 {
	font-size: 1.1875rem;
	margin-bottom: 10px;
}

.iqc-range h3 a {
	color: inherit;
	text-decoration: none;
}

.iqc-range h3 a:hover {
	color: var(--iqc-red-deep);
	text-decoration: underline;
}

.iqc-range-body > p {
	font-size: 0.9375rem;
	color: var(--ink-soft);
	margin-bottom: 18px;
	max-width: 42ch;
}

.iqc-range-apps {
	margin: 0 0 18px;
	padding: 14px 0 0;
	border-top: 1px solid var(--rule-soft);
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--ink-soft);
	max-width: 44ch;
}

.iqc-range-apps span {
	display: block;
	font-weight: 600;
	color: var(--iqc-blue-deep);
	margin-bottom: 2px;
}

.iqc-range-specs {
	margin: auto 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.8125rem;
	color: var(--ink-soft);
	border-top: 1px solid var(--rule-soft);
}

.iqc-range-specs li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	border-bottom: 1px solid var(--rule-soft);
}

.iqc-range-specs li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.iqc-range-specs b {
	color: var(--iqc-blue-deep);
	font-weight: 600;
	text-align: right;
}

/* where they end up */

.iqc-apps {
	background: var(--iqc-blue-deep);
	color: rgba(255, 255, 255, 0.82);
}

.iqc-apps h2,
.iqc-apps h3 {
	color: var(--white);
}

.iqc-apps .iqc-section-head p {
	color: rgba(255, 255, 255, 0.82);
}

.iqc-apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 32px;
}

.iqc-app h3 {
	font-size: 1.0625rem;
	margin: 16px 0 8px;
}

.iqc-app p {
	margin: 0;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 38ch;
}

.iqc-app-media {
	border-radius: var(--radius);
	overflow: hidden;
	border-bottom: 3px solid var(--iqc-red);
}

.iqc-app-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* what we do */

.iqc-caps {
	background: var(--paper);
	border-block: 1px solid var(--rule);
}

.iqc-caps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.iqc-cap {
	background: var(--white);
	border: 1px solid var(--rule);
	border-top: 3px solid var(--iqc-blue);
	border-radius: var(--radius);
	overflow: hidden;
}

.iqc-cap-wide {
	grid-column: span 1;
	border-top-color: var(--iqc-red);
}

.iqc-cap-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-bottom: 1px solid var(--rule);
}

.iqc-cap-body {
	padding: 22px 24px 26px;
}

.iqc-cap h3 {
	font-size: 1.125rem;
	margin-bottom: 10px;
}

.iqc-cap p {
	margin-bottom: 0;
	font-size: 0.9375rem;
	color: var(--ink-soft);
	max-width: 46ch;
}

/* lookup band */

.iqc-lookup {
	background: var(--iqc-blue);
	color: var(--white);
}

.iqc-lookup .iqc-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 48px;
	align-items: start;
}

.iqc-lookup h2 {
	color: var(--white);
}

.iqc-lookup p {
	color: rgba(255, 255, 255, 0.85);
}

.iqc-lookup-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.iqc-lookup-form label {
	flex: 1 1 100%;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.iqc-lookup-form input[type="search"],
.iqc-lookup-form input[type="text"] {
	flex: 1 1 240px;
	min-width: 0;
	padding: 14px 16px;
	background: var(--white);
	border: 2px solid var(--white);
	border-radius: var(--radius);
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--ink);
}

.iqc-lookup-form input::placeholder {
	color: #8b90a6;
}

.iqc-lookup-aside {
	border-left: 3px solid var(--iqc-red);
	padding-left: 24px;
}

.iqc-lookup-aside p:last-of-type {
	margin-bottom: 20px;
}

.iqc-lookup-aside a.iqc-mail {
	color: var(--white);
	font-weight: 600;
}

/* industries */

.iqc-industries .iqc-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.iqc-sector-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--rule);
}

.iqc-sector-list li {
	display: grid;
	grid-template-columns: minmax(120px, 0.5fr) minmax(0, 1.5fr);
	gap: 12px 24px;
	padding: 14px 0;
	border-bottom: 1px solid var(--rule);
}

.iqc-sector-list strong {
	color: var(--iqc-blue-deep);
	font-weight: 700;
}

.iqc-sector-list span {
	font-size: 0.9375rem;
	color: var(--ink-soft);
}

.iqc-industries-figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
}

.iqc-industries-figure img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

/* questions */

.iqc-faq {
	background: var(--paper);
	border-block: 1px solid var(--rule);
}

.iqc-faq-list {
	max-width: 82ch;
	border-top: 1px solid var(--rule);
}

.iqc-faq-list details {
	border-bottom: 1px solid var(--rule);
}

.iqc-faq-list summary {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--iqc-blue-deep);
	cursor: pointer;
	list-style: none;
}

.iqc-faq-list summary::-webkit-details-marker {
	display: none;
}

.iqc-faq-list summary::before {
	content: "+";
	flex: 0 0 auto;
	width: 22px;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	line-height: 1.2;
	color: var(--iqc-red);
}

.iqc-faq-list details[open] summary::before {
	content: "\2212";
}

.iqc-faq-answer {
	padding: 0 0 20px 36px;
}

.iqc-faq-answer p {
	margin: 0;
	color: var(--ink-soft);
}

/* closing call to action */

.iqc-cta {
	background: var(--white);
	padding-block: 76px;
}

.iqc-cta-inner {
	border: 1px solid var(--rule);
	border-left: 6px solid var(--iqc-red);
	border-radius: var(--radius);
	padding: 44px 44px 48px;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.iqc-cta-inner h2 {
	margin-bottom: 12px;
}

.iqc-cta-inner p:last-of-type {
	margin-bottom: 0;
}

.iqc-cta-contact {
	font-size: 0.9375rem;
}

.iqc-cta-contact dt {
	font-weight: 600;
	color: var(--iqc-blue-deep);
}

.iqc-cta-contact dd {
	margin: 0 0 14px;
	color: var(--ink-soft);
}

.iqc-cta-contact a {
	font-weight: 600;
}

/* ---------------------------------------------------------------
   6. Footer
   --------------------------------------------------------------- */

.iqc-footer {
	background: var(--iqc-blue-deep);
	color: rgba(255, 255, 255, 0.78);
	padding-block: 56px 0;
	font-size: 0.9375rem;
}

.iqc-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
	gap: 40px;
}

.iqc-footer img.iqc-footer-logo {
	height: 74px;
	width: auto;
	margin-bottom: 18px;
}

.iqc-footer h2 {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
}

.iqc-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.iqc-footer li {
	margin-bottom: 8px;
}

.iqc-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.iqc-footer a:hover {
	color: var(--white);
	text-decoration: underline;
}

.iqc-footer p {
	max-width: 40ch;
}

.iqc-footer-bar {
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	padding-block: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.66);
}

.iqc-footer-bar p {
	margin: 0;
	max-width: none;
}

/* ---------------------------------------------------------------
   7. Inner pages and WordPress basics
   --------------------------------------------------------------- */

.iqc-page {
	padding-block: 64px 80px;
}

.iqc-page-header {
	border-bottom: 1px solid var(--rule);
	padding-bottom: 20px;
	margin-bottom: 36px;
}

.iqc-entry {
	max-width: 72ch;
}

.iqc-entry img {
	border-radius: var(--radius);
}

.iqc-entry blockquote {
	margin: 24px 0;
	padding-left: 20px;
	border-left: 4px solid var(--iqc-red);
	color: var(--ink-soft);
}

.iqc-entry table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.iqc-entry th,
.iqc-entry td {
	border: 1px solid var(--rule);
	padding: 10px 12px;
	text-align: left;
}

.iqc-entry th {
	background: var(--paper);
	color: var(--iqc-blue-deep);
}

.iqc-post-list article {
	border-bottom: 1px solid var(--rule);
	padding-bottom: 28px;
	margin-bottom: 28px;
}

.iqc-post-meta {
	font-size: 0.8125rem;
	color: var(--ink-soft);
}

.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter {
	margin-inline: auto;
}

.wp-caption-text,
.wp-element-caption {
	font-size: 0.8125rem;
	color: var(--ink-soft);
}


/* search form on inner pages */

.iqc-searchform {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.iqc-searchform label {
	flex: 1 1 100%;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink-soft);
}

.iqc-searchform input[type="search"] {
	flex: 1 1 260px;
	min-width: 0;
	padding: 14px 16px;
	background: var(--white);
	border: 2px solid var(--rule);
	border-radius: var(--radius);
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--ink);
}

.iqc-searchform input[type="search"]:focus {
	border-color: var(--iqc-blue);
}

/* ---------------------------------------------------------------
   8. Responsive
   --------------------------------------------------------------- */

@media (max-width: 1080px) {
	.iqc-industries .iqc-wrap,
	.iqc-cta-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.iqc-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.iqc-nav-toggle {
		display: inline-flex;
	}

	.iqc-header-right {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		z-index: 40;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
		background: var(--white);
		border-bottom: 3px solid var(--iqc-blue);
		box-shadow: 0 18px 24px -18px rgba(20, 22, 107, 0.4);
	}

	.iqc-header-right.is-open {
		display: flex;
	}

	.iqc-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.iqc-nav a {
		padding: 15px var(--gutter);
		border-bottom: 1px solid var(--rule-soft);
	}

	.iqc-nav a:hover,
	.iqc-nav .current-menu-item > a {
		border-bottom-color: var(--rule-soft);
		background: var(--iqc-blue-tint);
	}

	.iqc-header-right > .btn {
		margin: 16px var(--gutter) 20px;
	}

	.iqc-hero > .iqc-wrap {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
		padding-block: 40px 48px;
	}

	.iqc-hero-figure {
		order: -1;
	}

	.iqc-section {
		padding-block: 56px;
	}

	.iqc-cta-inner {
		padding: 32px 28px 36px;
	}
}

@media (max-width: 560px) {
	.iqc-brand img {
		height: 48px;
	}

	.iqc-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.iqc-utility-spacer {
		margin-left: 0;
	}
}

@media print {
	.iqc-utility,
	.iqc-nav,
	.iqc-lookup-form,
	.iqc-searchform,
	.iqc-nav-toggle {
		display: none;
	}
}
