/*
 * GSB Blog redesign (Figma: GSB Blog Page New Copy)
 * Scoped to .gsb-blog-* wrappers so it never leaks into the WP-exported
 * header/footer chrome that surrounds these pages.
 */

.gsb-blog-main,
.gsb-blog-post,
.gsb-blog-author {
	--gsb-teal: #029b9e;
	--gsb-teal-dark: #116365;
	--gsb-teal-deep: #045a5c;
	--gsb-teal-tint: #8fd3d4;
	--gsb-teal-pale: #c6eaea;
	--gsb-teal-wash: #f5ffff;
	--gsb-teal-wash-2: #e1f5f5;
	--gsb-border: #d8d8d8;
	--gsb-border-light: #e4e4e4;
	--gsb-text: #1e1e1e;
	--gsb-text-muted: #606060;
	--gsb-text-faint: #a7a7a7;
	font-family: 'Inter', sans-serif;
	color: var(--gsb-text);
	max-width: 1240px;
	margin: 0 auto;
	padding: 48px 20px 0;
	box-sizing: border-box;
}

.gsb-blog-main *,
.gsb-blog-post *,
.gsb-blog-author * {
	box-sizing: border-box;
}

/* ---------- shared bits ---------- */

.gsb-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	padding: 8px 24px;
	border: 1px solid var(--gsb-teal-dark);
	background: var(--gsb-teal-tint);
	border-radius: 40px;
	color: var(--gsb-teal-dark);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	width: fit-content;
}

.gsb-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 66px;
	background: var(--gsb-teal-pale);
	color: var(--gsb-teal-dark);
	font-weight: 700;
	font-size: 11px;
	text-transform: capitalize;
	white-space: nowrap;
}

.gsb-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gsb-teal);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border: none;
	border-radius: 8px;
	padding: 12px 20px;
	cursor: pointer;
	text-decoration: none;
}

.gsb-btn-primary:hover {
	background: var(--gsb-teal-deep);
	color: #fff;
}

/* ============================================================
   BLOG MAIN (index / listing) page
   ============================================================ */

.gsb-blog-main__hero {
	text-align: center;
	margin-bottom: 40px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: -220px;
	padding: 268px 20px 0;
	background-image: url('/gsb/images/blog-hero-bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	position: relative;
}

.gsb-blog-main__hero-inner {
	max-width: 1240px;
	margin: 0 auto;
}

.gsb-blog-main__title {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -2px;
	margin: 0 0 16px;
	color: #000;
}

.gsb-blog-main__subtitle {
	max-width: 720px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
	color: #333;
}

.gsb-blog-main__search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 900px;
	margin: 40px auto 0;
	background: #fff;
	border: 1px solid #c4c4c4;
	border-radius: 27px;
	padding: 8px 8px 8px 24px;
}

.gsb-blog-main__search input[type="search"] {
	flex: 1;
	border: none;
	outline: none;
	font-size: 15px;
	color: #595c5f;
	background: transparent;
}

.gsb-topics-dropdown {
	position: relative;
	border-left: 1px solid #d8d8d8;
	padding-left: 16px;
}

.gsb-topics-dropdown__toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	background: transparent;
	box-shadow: none;
	font-size: 14px;
	color: #595c5f;
	font-weight: 500;
	padding: 8px 4px;
	cursor: pointer;
}

.gsb-topics-dropdown__toggle:hover {
	background: transparent;
	box-shadow: none;
}

.gsb-topics-dropdown__chevron {
	transition: transform 0.15s ease;
}

.gsb-topics-dropdown.is-open .gsb-topics-dropdown__chevron {
	transform: rotate(180deg);
}

.gsb-topics-dropdown__panel {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	min-width: 220px;
	background: #fff;
	border: 0.5px solid var(--gsb-border-light);
	border-radius: 15px;
	box-shadow: -3px 5px 13px rgba(0, 0, 0, 0.1), -14px 19px 24px rgba(0, 0, 0, 0.09);
	padding: 14px 0;
	z-index: 20;
}

.gsb-topics-dropdown.is-open .gsb-topics-dropdown__panel {
	display: block;
}

.gsb-topics-dropdown__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	color: #5a5a5a;
	cursor: pointer;
	white-space: nowrap;
}

.gsb-topics-dropdown__item:hover {
	background: #f3f3f3;
}

.gsb-topics-dropdown__item input[type="checkbox"] {
	accent-color: var(--gsb-teal);
	width: 15px;
	height: 15px;
}

.gsb-topics-dropdown__item input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gsb-topics-dropdown__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--gsb-teal-wash-2);
	color: var(--gsb-teal-dark);
	flex-shrink: 0;
}

.gsb-topics-dropdown__item input[type="radio"]:checked ~ .gsb-topics-dropdown__icon {
	background: var(--gsb-teal-dark);
	color: #fff;
}

.gsb-topics-dropdown__item:has(input[type="radio"]:checked) {
	color: var(--gsb-teal-dark);
	font-weight: 700;
}

.gsb-blog-main__topics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 24px 0 56px;
}

.gsb-topic-chip {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 20px;
	background: var(--gsb-teal-tint);
	color: var(--gsb-teal-dark);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.gsb-topic-chip.is-active,
.gsb-topic-chip:hover {
	background: var(--gsb-teal-dark);
	color: #fff;
}

.gsb-blog-main__section-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 28px;
}

.gsb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	list-style: none;
	margin: 0 0 48px;
	padding: 0;
}

.gsb-blog-card {
	background: #fff;
	border: 1px solid var(--gsb-border);
	border-radius: 21px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.gsb-blog-card__image {
	display: block;
	width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gsb-blog-card__body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.gsb-blog-card__date {
	font-size: 13px;
	color: #000;
	margin: 0 0 10px;
}

.gsb-blog-card__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.gsb-blog-card__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.3;
}

.gsb-blog-card__title a {
	color: #000;
	text-decoration: none;
}

.gsb-blog-card__title a:hover {
	color: var(--gsb-teal);
}

.gsb-blog-card__excerpt {
	font-size: 13px;
	line-height: 1.5;
	color: #000;
	margin: 0 0 20px;
	flex: 1;
}

.gsb-blog-card {
	transition: box-shadow 0.2s ease;
}

.gsb-blog-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gsb-blog-card__author {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #eee;
	border-radius: 26px;
	padding: 10px 14px;
	transition: background-color 0.2s ease;
}

.gsb-blog-card:hover .gsb-blog-card__author {
	background: var(--gsb-teal);
}

.gsb-blog-card__author img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.gsb-blog-card__author-name {
	font-size: 12px;
	font-weight: 700;
	color: #000;
	margin: 0;
	margin-bottom: 0 !important;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.gsb-blog-card:hover .gsb-blog-card__author-name {
	color: #fff;
}

.gsb-blog-card__author-role {
	font-size: 11px;
	color: var(--gsb-text-faint);
	margin: 0;
	margin-bottom: 0 !important;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.gsb-blog-card:hover .gsb-blog-card__author-role {
	color: rgba(255, 255, 255, 0.75);
}

.gsb-blog-card__author-arrow {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #999;
	transition: background-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.gsb-blog-card:hover .gsb-blog-card__author-arrow {
	background: #fff;
	color: var(--gsb-teal);
}

.gsb-empty-state {
	text-align: center;
	padding: 60px 20px;
	color: #555;
	font-size: 16px;
}

/* pagination */

.gsb-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0 0 64px;
	padding: 0;
	flex-wrap: wrap;
}

.gsb-pagination a,
.gsb-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #000;
}

.gsb-pagination a.is-word,
.gsb-pagination span.is-word {
	border-radius: 16px;
	padding: 0 8px;
	min-width: 0;
	color: #000;
	font-weight: 600;
}

.gsb-pagination .is-current {
	background: var(--gsb-teal-tint);
	color: var(--gsb-teal-dark);
	font-weight: 700;
}

.gsb-pagination .is-disabled {
	color: #bbb;
	cursor: default;
}

@media (max-width: 991px) {
	.gsb-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.gsb-blog-main__title {
		font-size: 34px;
	}

	.gsb-blog-main__search {
		flex-wrap: wrap;
		border-radius: 16px;
	}

	.gsb-blog-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   BLOG INNER (single post) page
   ============================================================ */

.gsb-blog-post {
	padding-top: 32px;
}

.gsb-blog-post__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--gsb-teal-wash-2);
	border: 1px solid var(--gsb-teal);
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 14px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.gsb-blog-post__breadcrumb a {
	color: var(--gsb-teal);
	text-decoration: none;
}

.gsb-blog-post__breadcrumb span {
	color: #383838;
}


.gsb-blog-post__toc-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	background: var(--gsb-teal-wash-2);
	border: 1px solid var(--gsb-teal);
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 500;
	color: #383838;
	cursor: pointer;
}

.gsb-blog-post__toc-toggle svg {
	transition: transform 0.15s ease;
	flex-shrink: 0;
	color: var(--gsb-text);
}

.gsb-blog-post__toc.is-open .gsb-blog-post__toc-toggle svg {
	transform: rotate(180deg);
}

.gsb-blog-post__toc-panel {
	display: none;
	list-style: none;
	counter-reset: toc-counter;
	background: #fff;
	border: 1px solid #c7f0f0;
	border-radius: 12px;
    box-shadow: 0 10px 23px 0 rgba(0, 0, 0, 0.1);
	margin: 8px 0 0;
	padding: 16px 20px;
}

.gsb-blog-post__toc.is-open .gsb-blog-post__toc-panel {
	display: block;
}

.gsb-blog-post__toc-panel li {
	counter-increment: toc-counter;
	margin-bottom: 10px;
}

.gsb-blog-post__toc-panel li:last-child {
	margin-bottom: 0;
}

.gsb-blog-post__toc-panel a {
	display: flex;
	gap: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--gsb-text-muted);
	text-decoration: none;
}

.gsb-blog-post__toc-panel a::before {
	content: counter(toc-counter) ".";
	flex-shrink: 0;
	font-weight: 700;
	color: var(--gsb-teal);
}

.gsb-blog-post__toc-panel a:hover {
	color: var(--gsb-teal-dark);
}

.gsb-blog-post__toc-panel li.gsb-blog-post__toc-sub {
	counter-increment: none;
	margin-left: 22px;
}

.gsb-blog-post__toc-panel li.gsb-blog-post__toc-sub a {
	font-size: 13px;
}

.gsb-blog-post__toc-panel li.gsb-blog-post__toc-sub a::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gsb-teal);
	margin-top: 7px;
}

.gsb-blog-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	align-items: start;
}

.gsb-blog-post__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -1.5px;
	margin: 0 0 24px;
	color: #000;
}

.gsb-blog-post__byline {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--gsb-teal-wash);
	border: 1px solid #afafaf;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.gsb-blog-post__byline img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.gsb-blog-post__byline p a {
	color: inherit;
	text-decoration: none;
}

.gsb-blog-post__byline p a:hover {
	text-decoration: underline;
}

.gsb-blog-post__byline p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: var(--gsb-text-muted);
}

.gsb-blog-post__hero-image {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	margin-bottom: 32px;
	aspect-ratio: 16/9;
}

.gsb-blog-post__body {
	font-size: 18px;
	line-height: 1.65;
	color: var(--gsb-text-muted);
}

.gsb-blog-post__body table,
.gsb-blog-post__body pre,
.gsb-blog-post__body iframe {
	display: block;
	max-width: 100%;
	overflow-x: scroll;
}

.gsb-blog-post__body h2 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -1px;
	color: #000;
	margin: 40px 0 16px;
	padding-left: 14px;
	border-left: 4px solid var(--gsb-teal);
}

.gsb-blog-post__body h3 {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin: 28px 0 12px;
}

.gsb-blog-post__body p {
	margin: 0 0 18px;
}

.gsb-blog-post__body ul,
.gsb-blog-post__body ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.gsb-blog-post__body li {
	margin-bottom: 10px;
}

.gsb-blog-post__body img {
	max-width: 100%;
	border-radius: 12px;
	height: auto;
}

.gsb-blog-post__body a {
	color: var(--gsb-teal);
}

.gsb-blog-post__ai-row {
	display: flex;
	align-items: center;
	/* gap: 16px; */
	flex-wrap: wrap;
	background: #F5FFFF;
	border: 1px solid #8FD3D4;
	border-radius: 12px;
	padding: 24px 28px;
	margin: 32px 0;
}

.gsb-blog-post__ai-row span {
	font-size: 16px;
	font-weight: 600;
	color: var(--gsb-text);
	flex-shrink: 0;
}

.gsb-blog-post__ai-row img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.gsb-blog-post__ai-google-icon {
	width: 40.3447265625px !important;
	height: 39.2896728515625px !important;
	padding: 8px;
	margin-left: 8px;
	box-sizing: border-box;
	border-radius: 7px;
	opacity: 1;
	background: #fff;
	box-shadow: 0px 0px 9px 0px #8FD3D4;
}

.gsb-blog-post__share {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 4px 0 32px;
}

.gsb-blog-post__share img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.gsb-blog-post__share span {
	font-size: 15px;
	color: #383838;
	margin-right: 8px;
}

.gsb-blog-post__copy-link {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 16px;
	border: 1px solid var(--gsb-teal);
	border-radius: 7px;
	background: #fff;
	color: var(--gsb-teal-dark);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	margin-left: auto;
}

.gsb-blog-post__copy-link:hover {
	background: var(--gsb-teal-wash-2);
}

.gsb-blog-post__copy-link.is-copied {
	background: var(--gsb-teal-dark);
	color: #fff;
	border-color: var(--gsb-teal-dark);
}

.gsb-blog-post__preferred-source {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--gsb-teal);
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	color: var(--gsb-teal-dark);
	text-decoration: none;
}

.gsb-blog-post__preferred-source:hover {
	background: var(--gsb-teal-wash-2);
}

.gsb-blog-post__preferred-source-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.gsb-blog-post__faq {
	margin-top: 40px;
}

.gsb-blog-post__faq h2 {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	margin: 0 0 24px;
}

.gsb-underline {
	text-decoration: underline;
	text-decoration-color: var(--gsb-teal);
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

.gsb-blog-post__takeaways {
	background: #F5FFFF;
	border: 1px solid #8FD3D4;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 32px;
}

.gsb-blog-post__takeaways h2 {
	font-size: 22px;
	font-weight: 700;
	color: #383838;
	margin: 0 0 16px;
}

.gsb-blog-post__takeaways ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gsb-blog-post__takeaways li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--gsb-text-muted);
}

.gsb-blog-post__takeaways li:last-child {
	margin-bottom: 0;
}

.gsb-blog-post__takeaways li::before {
	content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-weight: 700;
    background-color: #8FD3D4;
	font-size: 12px;
    border-radius: 50px;
    height: 20px;
    width: 20px;
    text-align: center;
}

.gsb-blog-post__takeaways li strong {
	color: var(--gsb-text);
	font-weight: 700;
}

.gsb-blog-post__takeaways li p {
	display: inline;
	margin: 0;
}

.gsb-blog-post__sources {
	background: var(--gsb-teal-wash-2);
	border: 1px solid var(--gsb-teal);
	border-radius: 12px;
	padding: 24px 28px;
	margin: 32px 0;
}

.gsb-blog-post__sources h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--gsb-text);
	margin: 0 0 16px;
}

.gsb-blog-post__sources ol {
	margin: 0;
	padding-left: 22px;
}

.gsb-blog-post__sources li {
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--gsb-text-muted);
}

.gsb-blog-post__sources li:last-child {
	margin-bottom: 0;
}

.gsb-blog-post__sources a {
	color: var(--gsb-teal-dark);
	font-weight: 600;
	text-decoration: none;
	word-break: break-word;
}

.gsb-blog-post__sources a:hover {
	text-decoration: underline;
}

.gsb-faq-item {
	background: #fbfefe;
	border: 1px solid #c7f0f0;
	border-radius: 11px;
	padding: 18px 20px;
	margin-bottom: 12px;
}

.gsb-faq-item summary {
	font-size: 18px;
	font-weight: 600;
	color: #4c4c4c;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gsb-faq-item summary::-webkit-details-marker {
	display: none;
}

.gsb-faq-item summary::after {
	content: '';
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--gsb-teal);
	border-bottom: 2px solid var(--gsb-teal);
	transform: rotate(45deg);
	flex-shrink: 0;
	margin-left: 12px;
	transition: transform 0.2s ease;
}

.gsb-faq-item[open] summary::after {
	transform: rotate(-135deg);
}

.gsb-faq-item p {
	margin: 12px 0 0;
	color: var(--gsb-text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.gsb-blog-post__related {
	margin-top: 56px;
}

.gsb-blog-post__related-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 24px;
}

.gsb-related-featured {
	position: relative;
	display: block;
	border-radius: 21px;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 28px;
	transition: box-shadow 0.2s ease;
}

.gsb-related-featured:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.gsb-related-featured__image {
	width: 100%;
	aspect-ratio: 14/8;
	object-fit: cover;
	display: block;
}

.gsb-related-featured__scrim {
   position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 227.034px;

    background: #0000004D;
    backdrop-filter: blur(54.9px);
    -webkit-backdrop-filter: blur(54.9px);

    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
}

.gsb-related-featured__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px 28px 28px;
}

.gsb-related-featured__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--gsb-teal-dark);
	margin-bottom: 12px;
}

.gsb-related-featured__pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gsb-teal);
	flex-shrink: 0;
}

.gsb-related-featured__body h3 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
}

.gsb-related-featured__body p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin: 0 0 16px;
	max-width: 640px;
}

.gsb-related-featured__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 600;
}

.gsb-related-featured__meta span:last-child {
	color: #fff;
	font-weight: 700;
}

.gsb-related-grid {
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 0;
}

.gsb-related-grid[hidden] {
	display: none;
}

@media (max-width: 700px) {
	.gsb-related-featured__image {
		aspect-ratio: 16/9;
	}

	.gsb-related-grid {
		grid-template-columns: 1fr;
	}
}

/* sidebar */

.gsb-blog-post__sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
}

.gsb-blog-post__sidebar > * + * {
	margin-top: 24px;
}

@media (max-width: 991px) {
	.gsb-blog-post__sidebar {
		position: static;
	}
}

.gsb-promo-card {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
}

.gsb-promo-card__image {
	width: 100%;
	display: block;
}

.gsb-sidebar-card {
	background: #fff;
	border: 1px solid #c7f0f0;
	border-top: 4px solid var(--gsb-teal);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 10px 23px 0 rgba(0, 0, 0, 0.1);
}

.gsb-sidebar-card h3 {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 8px;
}

.gsb-sidebar-card p {
	font-size: 13px;
	color: #949494;
	margin: 0 0 16px;
	line-height: 1.5;
}

.gsb-sidebar-card input[type="email"] {
	width: 100%;
	border: 1px solid #c7f0f0;
	border-radius: 999px;
	padding: 12px 18px;
	font-size: 13px;
	margin-bottom: 12px;
}

.gsb-sidebar-card .gsb-btn-primary {
	border-radius: 999px;
}

.gsb-sidebar-card__image {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	margin-bottom: 16px;
}

@media (max-width: 991px) {
	.gsb-blog-post__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.gsb-blog-post__title {
		font-size: 28px;
	}

	.gsb-blog-post__body {
		font-size: 16px;
	}
}

/* ============================================================
   BLOG AUTHOR page
   ============================================================ */

.gsb-blog-author__banner {
	position: relative;
	border-radius: 21px;
	overflow: hidden;
	background: linear-gradient(90deg, #198c8e, var(--gsb-teal));
	padding: 40px;
	color: #fff;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.gsb-blog-author__avatar-wrap {
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
}

.gsb-blog-author__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
}

.gsb-blog-author__verified {
	position: absolute;
	bottom: 4px;
	right: 4px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.gsb-blog-author__name {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 6px;
}

.gsb-blog-author__role {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 16px;
	opacity: 0.95;
}

.gsb-blog-author__badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.gsb-blog-author__badge {
	background: rgba(255, 255, 255, 0.27);
	border-radius: 16px;
	padding: 7px 16px;
	font-size: 14px;
	font-weight: 700;
}

.gsb-blog-author__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	align-items: start;
}

.gsb-blog-author__card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 23px 0 rgba(0, 0, 0, 0.1);
	padding: 36px;
	margin-bottom: 32px;
}

.gsb-blog-author__card h2 {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 20px;
	padding-left: 12px;
	border-left: 4px solid var(--gsb-teal);
}

.gsb-blog-author__card p {
	font-size: 17px;
	line-height: 1.6;
	color: var(--gsb-text-muted);
	margin: 0 0 16px;
}

.gsb-recent-blog div {
    width: 100%;
}

.gsb-recent-blog {
	display: flex;
	gap: 16px;
	align-items: center;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
	text-decoration: none;
	color: inherit;
}

.gsb-recent-blog img {
	width: 160px;
	height: 90px;
	border-radius: 8px;
	object-fit: contain;
	object-position: center;
	flex-shrink: 0;
}

.gsb-recent-blog__title {
	font-size: 17px;
	font-weight: 500;
	color: #000;
	margin: 0 0 6px;
}

.gsb-recent-blog__excerpt {
	font-size: 13px;
	color: #000;
	margin: 0 0 8px;
}

.gsb-recent-blog__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 12px;
	color: #575757;
	align-items: center;
}

.gsb-recent-blog__meta span {
	background: #edf2f7;
	border-radius: 14px;
	padding: 4px 10px;
}

.gsb-recent-blog__meta time {
	background: none;
	padding: 0;
	margin-left: auto;
}

@media (max-width: 991px) {
	.gsb-blog-author__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.gsb-blog-author__banner {
		padding: 28px 20px;
		text-align: center;
		justify-content: center;
	}

	.gsb-recent-blog {
		flex-direction: column;
		align-items: flex-start;
	}
}
