/* ==================================================================
   BLOG HUB
   Adapted from the approved usc.mainstage.pro/blogs design.

   Two deliberate deviations from the handoff stylesheet:
   - every rule is scoped to .BLOG-HUB (the handoff shipped bare *, html
     and body rules that would have reset the header, footer and every
     other block on the site)
   - sizes are in rem, not px, so the hub scales with the theme's rem
     ladder (html{font-size:1px}) like every other page
   Colours and the gradient come from the theme's own variables, and the
   type stays on the two Rubik weights the theme actually loads (400/700).
   ================================================================== */

.BLOG-HUB {
	--hub-surface: #F7F8FB;
	--hub-border: #E4E7EE;
	--hub-muted: #5A6472;
	--hub-frame: var(--frame-width);

	background: var(--white);
	color: var(--black);
}



/* ---------- resets against the theme's global link/heading rules ---------- */

.BLOG-HUB a {
	display: block;
	width: auto;
	gap: 0;
	/* the theme's base anchor rule is inline-flex + align-items:center, and
	   align-items has no other declaration to lose to — reset it here or
	   every card child collapses to its content width */
	align-items: stretch;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
}

.BLOG-HUB a::after { display: none; }

/* The theme declares `section { display: block }`, which outranks the UA's
   [hidden] rule — without this the results band shows before anyone types. */
.BLOG-HUB [hidden] { display: none !important; }

.BLOG-HUB :is(h1, h2, h3, h4, h5, h6) { margin: 0; }
.BLOG-HUB p { margin: 0; }
.BLOG-HUB button { font-family: inherit; }

.BLOG-HUB :is(a, button):focus-visible {
	outline: 2px solid var(--bright-pink);
	outline-offset: 3px;
}

.BLOG-HUB .hub-frame {
	max-width: var(--hub-frame);
	margin: 0 auto;
	padding: 0 40rem;
	box-sizing: border-box;
}

.BLOG-HUB .hub-band { padding: 64rem 0; }

.BLOG-HUB .hub-dot {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
	flex: 0 0 auto;
}



/* ---------- HERO ---------- */

.BLOG-HUB .hub-hero {
	/* clears the absolutely positioned site header */
	padding: calc(var(--page-head-height) + 20rem) 0 44rem;
}

.BLOG-HUB .hub-hero-inner {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 56rem;
	align-items: center;
}

.BLOG-HUB .hub-hero-left { min-width: 0; }

.BLOG-HUB .hub-hero-eyebrow {
	font-size: 12rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 14rem;
}

.BLOG-HUB .hub-hero h1 {
	font-size: 44rem;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.02em;
	max-width: 18ch;
	color: var(--white);
}

.BLOG-HUB .hub-hero-sub {
	margin-top: 14rem;
	font-size: 16rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
	max-width: 48ch;
}

.BLOG-HUB .hub-hero-note {
	margin-top: 10rem;
	font-size: 13rem;
	color: rgba(255, 255, 255, 0.55);
}



/* ---------- HERO FEATURED CARD ---------- */

.BLOG-HUB .hub-feature {
	background: var(--white);
	color: var(--black);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 24rem 60rem -20rem rgba(7, 26, 52, 0.55);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.BLOG-HUB .hub-feature:hover {
	transform: translateY(-3rem);
	box-shadow: 0 32rem 70rem -22rem rgba(7, 26, 52, 0.65);
}

.BLOG-HUB .hub-feature-media {
	position: relative;
	aspect-ratio: 16/9;
	background: var(--midnight-blue);
	overflow: hidden;
}

.BLOG-HUB .hub-feature-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

/* Chips live under the artwork, not over it. */
.BLOG-HUB .hub-feature-tags {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8rem;
}

.BLOG-HUB .hub-feature-badge,
.BLOG-HUB .hub-feature-eyebrow {
	font-size: 10rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--white);
	padding: 5rem 10rem;
}

.BLOG-HUB .hub-feature-badge { background: var(--purple); }
.BLOG-HUB .hub-feature-eyebrow { background: var(--bright-pink); }

/* The card sits inside .bg_blue-purple-pink, whose `a:not(.b-button)` rule
   outranks anything set on the anchor itself — colour the body instead. */
.BLOG-HUB .hub-feature-body {
	padding: 16rem 20rem 18rem;
	display: flex;
	flex-direction: column;
	gap: 10rem;
	color: var(--black);
}

.BLOG-HUB .hub-feature-title {
	font-size: 18rem;
	font-weight: 700;
	line-height: 1.25;
}

.BLOG-HUB .hub-feature-date {
	color: var(--hub-muted);
	font-size: 12rem;
	letter-spacing: 0.02em;
	padding-top: 10rem;
	border-top: 1px solid var(--hub-border);
	width: 100%;
}

/* A count, not a heading — muted line above the results. */
.BLOG-HUB .hub-results-heading {
	font-size: 15rem;
	font-weight: 700;
	color: var(--hub-muted);
	letter-spacing: 0.01em;
	margin-bottom: 18rem;
}

.BLOG-HUB .hub-feature-excerpt {
	color: var(--hub-muted);
	font-size: 14rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.BLOG-HUB .hub-avatar {
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: var(--purple);
	color: var(--white);
	font-size: 9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex: 0 0 auto;
}

.BLOG-HUB .hub-avatar-img { background: none; }
.BLOG-HUB .hub-avatar img { width: 100%; height: 100%; object-fit: cover; }



/* ---------- SECTION SCAFFOLD ---------- */

.BLOG-HUB .hub-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24rem;
	margin-bottom: 24rem;
}

.BLOG-HUB .hub-section-head-stacked { margin-top: 40rem; }

.BLOG-HUB .hub-section-head h2 {
	font-size: 32rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.BLOG-HUB .hub-block-label {
	display: block;
	font-size: 12rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--purple);
	margin-bottom: 10rem;
}

.BLOG-HUB .hub-view-all {
	font-size: 14rem;
	font-weight: 700;
	color: var(--purple);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.BLOG-HUB .hub-view-all:hover { color: var(--light-blue); }

.BLOG-HUB .hub-band-pinned { padding: 44rem 0 32rem; }
.BLOG-HUB .hub-band-categories { padding-top: 40rem; }



/* ---------- CAROUSEL ---------- */

.BLOG-HUB .hub-carousel-wrap { position: relative; }

.BLOG-HUB .hub-carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260rem, 300rem);
	gap: 20rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4rem 0 12rem;
	scrollbar-width: none;
}

.BLOG-HUB .hub-carousel::-webkit-scrollbar { display: none; }
.BLOG-HUB .hub-carousel > .hub-card { scroll-snap-align: start; }

.BLOG-HUB .hub-carousel-btn {
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48rem;
	height: 48rem;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--hub-border);
	color: var(--black);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20rem;
	line-height: 1;
	box-shadow: 0 10rem 26rem -10rem rgba(7, 26, 52, 0.32);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.BLOG-HUB .hub-carousel-btn:hover {
	transform: translateY(-50%) scale(1.08);
	border-color: var(--purple);
	color: var(--purple);
	box-shadow: 0 14rem 32rem -10rem rgba(76, 64, 213, 0.38);
}

.BLOG-HUB .hub-carousel-btn[hidden] { display: none; }
.BLOG-HUB .hub-carousel-btn[data-dir="-1"] { left: -24rem; }
.BLOG-HUB .hub-carousel-btn[data-dir="1"] { right: -24rem; }



/* ---------- CARD ---------- */

.BLOG-HUB .hub-card {
	background: var(--white);
	border: 1px solid var(--hub-border);
	display: flex;
	flex-direction: column;
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.BLOG-HUB .hub-card:hover {
	transform: translateY(-3rem);
	border-color: var(--purple);
	box-shadow: 0 10rem 30rem -12rem rgba(76, 64, 213, 0.22);
}

/* 16:9, not the mock's 16:10 — every post banner is 16:9, and the 10% the
   taller box cropped away was cutting into the artwork's own headline. */
.BLOG-HUB .hub-card-media {
	position: relative;
	aspect-ratio: 16/9;
	background: var(--midnight-blue);
	overflow: hidden;
}

.BLOG-HUB .hub-card-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.BLOG-HUB .hub-card-badge {
	position: absolute;
	top: 12rem;
	left: 12rem;
	z-index: 2;
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--white);
	font-size: 10rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 4rem 8rem;
}

.BLOG-HUB .hub-card-body {
	padding: 18rem 20rem 20rem;
	display: flex;
	flex-direction: column;
	gap: 8rem;
	flex: 1;
}

.BLOG-HUB .hub-card-datestamp {
	color: var(--hub-muted);
	font-size: 12rem;
	display: flex;
	align-items: center;
	gap: 10rem;
	letter-spacing: 0.02em;
	margin-bottom: 2rem;
}

.BLOG-HUB .hub-card-body h3 {
	font-size: 17rem;
	font-weight: 700;
	line-height: 1.3;
}

.BLOG-HUB .hub-card-excerpt {
	color: var(--hub-muted);
	font-size: 14rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}



/* ---------- SEARCH ---------- */

/* Search now lives inside the archive, directly under its heading. */
.BLOG-HUB .hub-archive-search {
	display: flex;
	align-items: center;
	gap: 16rem;
	margin: 0 0 28rem;
}

.BLOG-HUB .hub-search-input-wrap {
	flex: 1;
	min-width: 280rem;
	position: relative;
}

.BLOG-HUB .hub-search-input-wrap svg {
	position: absolute;
	top: 50%;
	left: 18rem;
	transform: translateY(-50%);
	color: var(--hub-muted);
	pointer-events: none;
}

.BLOG-HUB #hubSearchInput {
	width: 100%;
	box-sizing: border-box;
	padding: 16rem 18rem 16rem 50rem;
	background: var(--white);
	border: 1px solid var(--hub-border);
	border-radius: 0;
	color: var(--black);
	font-family: inherit;
	font-size: 16rem;
	appearance: none;
	-webkit-appearance: none;
}

.BLOG-HUB #hubSearchInput:focus { outline: none; border-color: var(--purple); }
.BLOG-HUB #hubSearchInput::placeholder { color: var(--hub-muted); }

.BLOG-HUB .hub-search-clear {
	background: none;
	border: none;
	color: var(--purple);
	font-size: 13rem;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 8rem 4rem;
}

.BLOG-HUB .hub-search-clear:hover { text-decoration: underline; }

.BLOG-HUB .hub-results { padding: 0 0 24rem; }

.BLOG-HUB .hub-results-empty {
	text-align: center;
	padding: 48rem 0;
	color: var(--hub-muted);
	font-size: 15rem;
}

.BLOG-HUB .hub-results-empty strong { color: var(--black); }



/* ---------- ARCHIVE TABS ---------- */

.BLOG-HUB .hub-tabs-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24rem;
	margin-bottom: 24rem;
	border-bottom: 1px solid var(--hub-border);
}

.BLOG-HUB .hub-tabs-title h2 {
	font-size: 32rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin-bottom: 12rem;
}

/* Two independent controls: how the archive is grouped, and how it is drawn. */
.BLOG-HUB .hub-tabs-controls {
	display: flex;
	align-items: center;
	gap: 20rem;
	flex-wrap: wrap;
}

.BLOG-HUB .hub-viewtoggle {
	display: flex;
	align-self: center;
	border: 1px solid var(--hub-border);
}

.BLOG-HUB .hub-vt {
	display: inline-flex;
	align-items: center;
	gap: 7rem;
	background: none;
	border: none;
	padding: 9rem 14rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 12rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hub-muted);
	transition: background 0.15s ease, color 0.15s ease;
}

.BLOG-HUB .hub-vt + .hub-vt { border-left: 1px solid var(--hub-border); }
.BLOG-HUB .hub-vt svg { width: 14rem; height: 14rem; flex: 0 0 auto; }
.BLOG-HUB .hub-vt:hover { color: var(--black); }
.BLOG-HUB .hub-vt.active { background: var(--purple); color: var(--white); }

/* Grid view of the archive — the same card as the carousel, laid out flat. */
.BLOG-HUB .hub-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260rem, 1fr));
	gap: 24rem 20rem;
}

.BLOG-HUB .hub-topic-block .hub-archive-grid { margin-top: 4rem; }

.BLOG-HUB .hub-tabs { display: flex; gap: 4rem; }

.BLOG-HUB .hub-tab {
	background: none;
	border: none;
	padding: 12rem 20rem;
	font-size: 14rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--hub-muted);
	cursor: pointer;
	border-bottom: 3rem solid transparent;
	margin-bottom: -1px;
}

.BLOG-HUB .hub-tab:hover { color: var(--black); }
.BLOG-HUB .hub-tab.active { color: var(--purple); border-bottom-color: var(--purple); }

.BLOG-HUB .hub-topic-block { margin-top: 40rem; }
.BLOG-HUB .hub-topic-block:first-child { margin-top: 0; }

.BLOG-HUB .hub-topic-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16rem;
	padding-bottom: 12rem;
	margin-bottom: 16rem;
	border-bottom: 1px solid var(--hub-border);
}

.BLOG-HUB .hub-topic-head h3 {
	font-size: 18rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.BLOG-HUB .hub-topic-count {
	color: var(--hub-muted);
	font-size: 13rem;
	font-variant-numeric: tabular-nums;
}

.BLOG-HUB .hub-topic-list,
.BLOG-HUB .hub-recent-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8rem 32rem;
}

.BLOG-HUB .hub-recent-list { grid-template-columns: repeat(auto-fill, minmax(320rem, 1fr)); }

.BLOG-HUB .hub-topic-item {
	display: flex;
	align-items: baseline;
	gap: 10rem;
	padding: 10rem 0;
	border-bottom: 1px dashed var(--hub-border);
	color: var(--black);
	transition: color 0.2s ease;
}

.BLOG-HUB .hub-topic-item:hover { color: var(--purple); }

.BLOG-HUB .hub-topic-item .no {
	color: var(--hub-muted);
	font-size: 12rem;
	font-variant-numeric: tabular-nums;
	min-width: 28rem;
	letter-spacing: 0.04em;
}

.BLOG-HUB .hub-topic-item .title {
	flex: 1;
	font-size: 14rem;
	line-height: 1.35;
}

.BLOG-HUB .hub-topic-item .meta {
	color: var(--hub-muted);
	font-size: 12rem;
	white-space: nowrap;
}



/* ---------- FOOTER CTA ---------- */

.BLOG-HUB .hub-cta { padding: 88rem 0; }

.BLOG-HUB .hub-cta-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48rem;
	align-items: center;
}

.BLOG-HUB .hub-cta h2 {
	font-size: 40rem;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--white);
}

.BLOG-HUB .hub-cta p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 17rem;
	line-height: 1.5;
	margin-top: 12rem;
	max-width: 42ch;
}



/* ---------- SUBSCRIBE FORM (Gravity Forms, inline) ---------- */

.BLOG-HUB .hub-subscribe { margin-top: 20rem; max-width: 520rem; }
.BLOG-HUB .hub-cta .hub-subscribe { margin-top: 0; max-width: none; }

.BLOG-HUB .hub-subscribe .gform_wrapper form {
	display: flex;
	gap: 8rem;
	flex-wrap: wrap;
	align-items: stretch;
}

.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_body {
	flex: 1 1 240rem;
	min-width: 0;
}

.BLOG-HUB .hub-subscribe .gform_fields { margin: 0; }
.BLOG-HUB .hub-subscribe .gform_fields .gfield { padding: 0; margin: 0; }

/* Hidden visually, still announced — the field has no other accessible name
   now that the placeholder is gone. */
.BLOG-HUB .hub-subscribe .gform_fields .gfield_label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.BLOG-HUB .hub-subscribe .gform_wrapper form input[type="email"],
.BLOG-HUB .hub-subscribe .gform_wrapper form input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	height: 52rem;
	padding: 0 18rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 0;
	background: var(--white);
	color: var(--black);
	font-family: inherit;
	font-size: 15rem;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

/* The placeholder is set on the Gravity Form itself, which several other
   blocks share — hide it here instead of editing the form for everyone. */
.BLOG-HUB .hub-subscribe .gform_wrapper form input::placeholder { color: transparent; }

.BLOG-HUB .hub-subscribe .gform_wrapper form input[type="email"]:focus,
.BLOG-HUB .hub-subscribe .gform_wrapper form input[type="text"]:focus {
	border-color: var(--white);
	box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.25);
}

.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer {
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	width: auto;
}

/* The theme's gravity-forms.js wraps the submit in <span class="b-button">
   and hangs the decorative square off that span, absolutely positioned —
   so the input needs right padding wide enough to clear it. */
.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer input[type="submit"],
.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer button {
	height: 52rem;
	padding: 0 46rem 0 26rem;
	border: 0;
	border-radius: 0;
	background: var(--bright-pink);
	color: var(--white);
	font-family: inherit;
	font-weight: 700;
	font-size: 14rem;
	cursor: pointer;
	transition: background 0.25s;
}

.BLOG-HUB .hub-subscribe .gform_footer span.b-button::after { right: 26rem; }

.BLOG-HUB .hub-subscribe .gform_validation_errors,
.BLOG-HUB .hub-subscribe .gfield_validation_message,
.BLOG-HUB .hub-subscribe .gform_confirmation_message {
	width: 100%;
	color: var(--white);
	font-size: 14rem;
}



/* ---------- RESPONSIVE ---------- */

@media screen and (max-width: 1120px) {
	.BLOG-HUB .hub-carousel-btn[data-dir="-1"] { left: -12rem; }
	.BLOG-HUB .hub-carousel-btn[data-dir="1"] { right: -12rem; }
}

@media screen and (max-width: 960px) {
	.BLOG-HUB .hub-frame { padding: 0 25rem; }
	.BLOG-HUB .hub-band { padding: 48rem 0; }

	.BLOG-HUB .hub-hero {
		padding: calc(var(--page-head-height) + 10rem) 0 40rem;
	}

	.BLOG-HUB .hub-hero-inner { grid-template-columns: 1fr; gap: 40rem; }
	.BLOG-HUB .hub-hero h1 { font-size: 38rem; max-width: none; }
	.BLOG-HUB .hub-hero-sub { font-size: 17rem; }
	.BLOG-HUB .hub-feature { max-width: 480rem; width: 100%; margin: 0 auto; }

	.BLOG-HUB .hub-section-head { flex-direction: column; align-items: flex-start; gap: 8rem; }
	.BLOG-HUB .hub-section-head h2 { font-size: 26rem; }
	.BLOG-HUB .hub-tabs-head { flex-direction: column; align-items: flex-start; gap: 12rem; }
	.BLOG-HUB .hub-tabs-title h2 { font-size: 26rem; }
	.BLOG-HUB .hub-tabs { margin-left: -20rem; }

	.BLOG-HUB .hub-carousel-btn { display: none; }
	.BLOG-HUB .hub-carousel { grid-auto-columns: 270rem; }

	.BLOG-HUB .hub-topic-list,
	.BLOG-HUB .hub-recent-list { grid-template-columns: 1fr; }

	.BLOG-HUB .hub-cta { padding: 56rem 0; }
	.BLOG-HUB .hub-cta-inner { grid-template-columns: 1fr; gap: 24rem; }
	.BLOG-HUB .hub-cta h2 { font-size: 30rem; }

	.BLOG-HUB .hub-archive-search { flex-direction: column; align-items: stretch; gap: 12rem; }
	.BLOG-HUB .hub-search-input-wrap { min-width: 0; }
	.BLOG-HUB .hub-search-clear { align-self: flex-start; }

	.BLOG-HUB .hub-subscribe .gform_wrapper form { flex-direction: column; }
	/* flex-basis becomes a height once the row turns into a column */
	.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_body { flex: 0 0 auto; }
	.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer,
	.BLOG-HUB .hub-subscribe .gform_footer span.b-button,
	.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer input[type="submit"],
	.BLOG-HUB .hub-subscribe .gform_wrapper form .gform_footer button { width: 100%; }
}

@media screen and (max-width: 600px) {
	.BLOG-HUB .hub-hero h1 { font-size: 32rem; }
	.BLOG-HUB .hub-carousel { grid-auto-columns: 250rem; gap: 14rem; }
	.BLOG-HUB .hub-card-body { padding: 14rem 16rem 16rem; }
	.BLOG-HUB .hub-card-body h3 { font-size: 16rem; }
	.BLOG-HUB .hub-topic-item .title { font-size: 14rem; }
}

@media (prefers-reduced-motion: reduce) {
	.BLOG-HUB * { transition: none !important; scroll-behavior: auto !important; }
}
