/* Gig Portal blog: article layout + 16:9 media */

/* Interior pages with no hero image: match “sticky” nav from first paint */
body.blog-no-hero header.header {
  background-color: #121921;
  border-bottom: 1px solid #ededed;
}
body.blog-no-hero header.header .logo_normal {
  display: none;
}
body.blog-no-hero header.header .logo_sticky {
  display: inline-block;
}
/* Dark bar: keep full-color logo — no brightness/invert (it wipes two-tone detail, e.g. icon in a ring). */
body.blog-no-hero header.header #logo img {
  filter: none !important;
  -webkit-filter: none !important;
}
body.blog-no-hero header.header a.open_close,
body.blog-no-hero header.header a.open_close i.icon_menu {
  color: #fff;
}
body.blog-no-hero header.header.sticky a.open_close,
body.blog-no-hero header.header.sticky a.open_close i.icon_menu {
  color: #fff;
}
/* Clear fixed site nav (~65px) — same idea as .margin_sticky */
body.blog-no-hero main.bg_gray > .container.margin_60_40:first-of-type {
  padding-top: 115px;
}
@media (max-width: 991px) {
  body.blog-no-hero main.bg_gray > .container.margin_60_40:first-of-type {
    padding-top: 95px;
  }
}

.blog-breadcrumb {
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}
.blog-breadcrumb a {
	color: inherit;
	text-decoration: underline;
}
.blog-article {
	font-size: 1.05rem;
	line-height: 1.75;
}
.blog-article h1,
.blog-article h2,
.blog-article h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
}
.blog-article p,
.blog-article ul {
	margin-bottom: 1rem;
}
.blog-article .lead {
	font-size: 1.15rem;
	color: #333;
}
/* 16:9 responsive embed for figures / media */
.blog-16x9 {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	background: #f0f0f0;
}
.blog-16x9 img,
.blog-16x9 picture {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.blog-16x9 > a.blog-16x9-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.blog-16x9 > a.blog-16x9-link:focus {
	outline: 2px solid #153dc0;
	outline-offset: 2px;
}
@supports not (aspect-ratio: 16 / 9) {
	.blog-16x9 {
		padding-bottom: 56.25%;
		height: 0;
	}
	.blog-16x9 > img,
	.blog-16x9 > picture,
	.blog-16x9 > a.blog-16x9-link {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
}
.blog-fig-caption {
	font-size: 0.9rem;
	color: #555;
	margin-top: 0.4rem;
	margin-bottom: 1.25rem;
}
.blog-aside {
	border-left: 3px solid #978667;
	padding-left: 1rem;
	margin: 1.5rem 0;
	background: #fafafa;
	padding: 1rem 1rem 1rem 1.25rem;
	border-radius: 0 6px 6px 0;
}
.blog-aside h3,
.blog-aside h4 {
	margin-top: 0;
	font-size: 1.05rem;
}
.blog-index-row {
	align-items: stretch;
}
.blog-index-row .blog-index-card {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}
.blog-index-card {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.blog-index-card h2 a {
	color: #222;
}
.blog-index-card .excerpt {
	color: #555;
}
.blog-pill {
	display: inline-block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #666;
	margin-bottom: 0.35rem;
}
.blog-home-teaser {
	background: #fff;
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 2px 15px rgba(0,0,0,.08);
}
.blog-home-teaser h3 a {
	color: #222;
}

/* Post layout: full-width row inside .container (aligns with header); narrow right rail */
@media (min-width: 992px) {
	.blog-sidebar-inner {
		position: sticky;
		top: 100px;
	}
}
.blog-sidebar-rail {
	background: #fff;
	border-radius: 8px;
	padding: 1rem 0.85rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	font-size: 0.875rem;
	line-height: 1.4;
}
.blog-sidebar-heading {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #666;
	margin: 0 0 0.65rem 0;
}
.blog-recent-list {
	margin: 0 0 1rem 0;
	padding: 0;
}
.blog-recent-list li {
	margin-bottom: 0.5rem;
}
.blog-recent-list a {
	color: #222;
	text-decoration: none;
	font-weight: 500;
}
.blog-recent-list a:hover {
	color: #153dc0;
	text-decoration: underline;
}
.blog-sidebar-cta {
	margin-top: 0.25rem;
	font-size: 0.8rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	white-space: normal;
	line-height: 1.25;
}
@media (max-width: 991px) {
	.blog-sidebar-rail {
		margin-top: 0.5rem;
	}
}

/* End-of-post trial CTA (replaces footer link row) */
.blog-post-cta {
	margin-top: 2.75rem;
	padding: 2rem 1.5rem;
	background: linear-gradient(145deg, #121921 0%, #1b2838 55%, #152a45 100%);
	border-radius: 10px;
	text-align: center;
	color: #d8dee9;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.blog-post-cta-title {
	color: #fff;
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}
.blog-post-cta-copy {
	margin: 0 auto 1.25rem;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.55;
}
.blog-post-cta-btn {
	display: inline-block;
	min-width: 220px;
}
