@charset "UTF-8";
/* CSS Document */


/* =========================
   SECTIONS + WRAP
========================= */

.section-blogpic {
	padding: 0;
}

.section-blog-content {
	margin-top: 100px;
	margin-bottom: 120px;
}

/* laptop / small desktop */
@media (max-width: 1200px) {
	.section-blog-content {
		margin-top: 150px;
	}
}

/* tablet */
@media (max-width: 900px) {
	.section-blog-content {
		margin-top: 170px;
	}
}

/* mobile */
@media (max-width: 600px) {
	.section-blog-content {
		margin-top: 200px;
	}
}

.wrap-blog {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: clamp(24px, 5vw, 60px);
	padding-right: clamp(24px, 5vw, 60px);
}

/* =========================
   HERO IMAGE
========================= */

.blog-hero {
	position: relative;
	width: 100%;
	margin: 20px 0 40px 0;
}

.blog-hero img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* =========================
   2-COLUMN BLOG LAYOUT
========================= */

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.25fr) minmax(260px, 1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.blog-main {
	min-width: 0;
}

.blog-sidebar {
	min-width: 0;
	border-left: 1px solid #e5e5e5;
	padding-left: clamp(1.5rem, 2.5vw, 2rem);
}

/* =========================
   MAIN BLOG TYPOGRAPHY
========================= */

.blog-date {
	font-weight: 400;
	font-size: 80%;
	font-style: italic;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.blog-series {
	font-size: clamp(1.4rem, 2.8vw, 2.2rem);
	line-height: 1.15;
	font-weight: 300;
	text-transform: uppercase;
	margin: 0 0 50px 0;
}

.blog-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.15;
	font-weight: 400;
	margin: 0 0 20px 0;
}

.blog-subhead {
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 400;
	margin: 40px 0 20px 0;
}

.bold-copy-blog {
	font-weight: 400;
	font-size: clamp(1.05rem, 1.2vw, 1.2rem);
	word-spacing: 1px;
	letter-spacing: 0.5px;
	margin: 40px 0 25px 0;
}

.general-copy-blog {
	font-size: clamp(0.95rem, 1.2vw, 1rem);
	margin-top: 20px;
}

.blog-reference-linkstyle { 
	font-size: 95%;
	border-bottom: thin dashed;
}

.blog-author-copy {
	font-size: clamp(0.8rem, 0.95vw, 0.9rem);
	font-style: italic;
	line-height: 1.6;
	color: #777;
	padding-top: 12px;
	margin-top: 25px;
}

.bold-copy-blog,
.general-copy-blog,
.blog-author-copy {
	text-align: justify;
}

@media (max-width: 768px) {
	.bold-copy-blog,
	.general-copy-blog,
	.blog-author-copy {
		text-align: left;
	}
}

/* =========================
   INLINE CALLOUT LINE
========================= */

.general-copy-blogline {
	position: relative;
	padding-left: clamp(20px, 4vw, 30px);
	margin: clamp(20px, 4vw, 25px) 0;
	font-weight: 400;
	font-size: clamp(1rem, 1.1vw, 1.05rem);
}

.general-copy-blogline::before {
	content: "";
	position: absolute;
	left: clamp(10px, 2.5vw, 20px);
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #ff6666;
}

/* =========================
   LINKS + DIVIDER
========================= */

.reference-linkstyle {
	font-size: 95%;
	border-bottom: thin dashed;
}

.blog-divider {
	border: none;
	height: 1px;
	background-color: #e0e0e0;
	margin: 80px 0 40px 0;
	width: 100%;
}

/* =========================
   BULLETS
========================= */

.tc-blog-bullets {
	margin-bottom: 20px;
	text-align: justify;
	font-size: clamp(0.95rem, 1.2vw, 1rem);
}

.tc-blog-bullets ul {
	margin-left: 30px;
	padding-left: 0;
	list-style-type: none;
}

.tc-blog-bullets ul li {
	margin-bottom: 0.7em;
}

.tc-blog-bullets ul li::before {
	content: "\2022";
	color: #ff6666;
	font-weight: 600;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

/* =========================
   DISCLAIMER BOX
========================= */

.blog-disclaimer-box {
	margin-top: clamp(2rem, 5vw, 5em);
	background-color: #F6F5EC;
	border-radius: clamp(0.75rem, 1.5vw, 1em);
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
	font-size: clamp(0.9rem, 0.9vw, 1rem);
	line-height: 1.6;
	text-align: justify;
}

.blog-disclaimer-box-header {
	font-weight: 400;
	margin-bottom: 0.35rem;
}

.blog-disclaimer-box-copy {
	font-style: italic;
}

/* =========================
   SIDEBAR
========================= */

.sidebar-inner {
	position: sticky;
	top: 120px;
}

.sidebar-title {
	margin: 0 0 1.2rem 0;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	font-weight: 400;
	letter-spacing: 0.5px;
}

.recent-post-item {
	display: block;
	text-decoration: none;
	color: inherit;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #ececec;
	transition: opacity 0.2s ease;
}

.recent-post-item:hover {
	opacity: 0.75;
}

.recent-post-date {
	display: block;
	font-size: 0.78rem;
	font-style: italic;
	letter-spacing: 1px;
	margin-bottom: 0.35rem;
	color: #777;
}

.recent-post-title {
	display: block;
	font-size: clamp(0.95rem, 1vw, 1rem);
	line-height: 1.45;
	font-weight: 400;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.blog-sidebar {
		border-left: none;
		border-top: 1px solid #e5e5e5;
		padding-left: 0;
		padding-top: 2rem;
	}

	.sidebar-inner {
		position: static;
	}
}