/* CSS PROPERTIES */
:root {
	/* Colors */
	--clr-neutral-100: hsl(0 0% 100%);
	--clr-neutral-200: hsl(0 0% 85%);
	--clr-neutral-300: hsl(0 0% 24.88%);
	--clr-neutral-800: hsl(0 0% 15%);
	--clr-neutral-900: hsl(0 0% 8%);
	--clr-accent: hsl(153 71% 59%);

	/* Fonts */
	/* Weights */
	--fw-300: 300;
	--fw-400: 400;
	--fw-600: 600;
	--fw-700: 700;
	--fw-900: 900;
}

/* CSS RESET */
/* Box sizing rules and margin padding */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Prevent font size inflation */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
	list-style: none;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
	text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
	min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
	scroll-margin-block: 5ex;
}
/* TYPOGRAPHY */
h1 {
	text-align: center;
}
a {
	text-transform: uppercase;
	text-decoration: none;
}
li {
	list-style-type: none;
}
/* GENERAL STYLES */
html {
	overflow-x: hidden;
}

body {
	font-family: system-ui, sans-serif;
	color: var(--clr-neutral-100);
	line-height: 1.6;
	background: hsl(231, 91%, 4%);
	min-height: 100dvh;
}
.button {
	text-transform: uppercase;
	color: var(--clr-neutral-100);
	font-weight: var(--fw-700);
	text-decoration: underline 5px var(--clr-accent);
	text-underline-offset: 1rem;
}
.button:hover {
	color: var(--clr-accent);
}
/* GRID STYLES */
.grid-layout {
	display: grid;
	grid-template-columns: 1rem 1fr 1rem;
	max-width: 100%;
}
/* HEADER - Sticky Navigation */
.main-header {
	position: sticky;
	top: 0;
	background: transparent;
	z-index: 1000;
	grid-column: 1 / -1;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.main-header.scrolled {
	background: rgba(17, 17, 17, 0.95);
	border-bottom: 1px solid var(--clr-neutral-800);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.logo {
	font-size: 20px;
	font-weight: var(--fw-700);
	color: var(--clr-neutral-100);
	text-decoration: none;
	line-height: 1;
	margin: 0;
}

.main-nav ul {
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-link {
	color: var(--clr-neutral-100);
	text-decoration: none;
	font-size: 14px;
	font-weight: var(--fw-600);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	background: var(--clr-neutral-800);
	color: var(--clr-accent);
}

/* Social Links */
.socials {
	flex-shrink: 0;
}

.socials ul {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.socials img {
	height: 20px;
	width: auto;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.socials a:hover img {
	transform: scale(1.15);
	filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}
/* HERO STYLES */
.hero {
	grid-column: 2 / 3;
	border-bottom: 1px solid var(--clr-neutral-200);
	padding-bottom: 5rem;
	padding-top: 3rem;
}
.hero__img {
	margin-inline: auto;
	max-width: 174px;
	margin-bottom: 42px;
}
.hero__title {
	font-size: 38px;
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.hero__title span {
	text-decoration: underline var(--clr-accent);
	text-underline-offset: 0.4rem;
}
.hero__copy {
	font-size: 16px;
	color: var(--clr-neutral-200);
	margin-bottom: 2rem;
}
/* SKILSS STYLES */
.skills {
	grid-column: 2 / 3;
	text-align: center;
	padding-block: 48px;
	border-bottom: 1px solid var(--clr-neutral-200);
}
.skills h3 {
	font-size: 32px;
	font-weight: var(--fw-700);
	margin-bottom: 18px;
}
.skills p {
	font-size: 16px;
	font-weight: 500;
	color: var(--clr-neutral-200);
	margin-bottom: 32px;
}
/* PROJECTS STYLES */
.projects {
	grid-column: 2 / 3;
}
.projects__header {
	margin-top: 82px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.projects__header h2 {
	font-size: 40px;
	font-weight: 700;
}
.project {
	margin-block: 40px;
	margin-inline: auto;
}
.project__img {
	width: 320px;
	aspect-ratio: 16 / 10;
	margin-inline: auto;
	background: salmon;
}
.project h3 {
	font-size: 24px;
	padding-block: 26px 22px;
}
.project__tags {
	display: flex;
	gap: 24px;
	color: var(--clr-neutral-200);
}
.project__links {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-block: 35px 40px;
}
/* FOOTER */
footer {
	grid-column: 1 / 4;
	display: grid;
	grid-template-columns: subgrid;
	padding-block: 2rem;
	background: var(--clr-neutral-800);
}
.contact__cta {
	grid-column: 2 / 3;
}
.contact__cta h2 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 2rem;
}
.contact__cta p {
	font-size: 1rem;
	color: var(--clr-neutral-200);
	text-align: center;
}
footer form {
	grid-column: 2 / 3;
	display: flex;
	flex-direction: column;
}
footer input,
footer textarea {
	background: var(--clr-neutral-800);
	border: none;
	border-bottom: 1px solid var(--clr-neutral-200);
	width: 100%;
	color: var(--clr-neutral-200);
	padding: 2rem;
	outline: 0;
}
footer input.button {
	width: auto;
	border-bottom: none;
	margin-left: auto;
	margin-block: 1rem 5rem;
	padding-inline: 0;
	cursor: pointer;
}
.footer__socials {
	grid-column: 2 / 3;
	padding-top: 2rem;
	display: flex;
	justify-content: center;
}

.footer__socials .socials a {
	transition: all 0.3s ease;
}

.footer__socials .socials a:hover svg {
	transform: scale(1.15);
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Base sizing for CodePen icon to fix aspect ratio on all screens */
.footer__socials .socials svg[viewBox="0 0 138 26"] {
	width: 60px;
	height: 11px;
}

.footer__copyright {
	grid-column: 2 / 4;
	text-align: center;
	padding: 2rem 0 1rem;
	border-top: 1px solid var(--clr-neutral-700);
	margin-top: 2rem;
}

.footer__copyright p {
	color: var(--clr-neutral-200);
	font-size: 0.875rem;
	margin: 0;
}

/* Smooth scrolling for internal links */
html {
	scroll-behavior: smooth;
}

/* MEDIA QUERIES*/
/* mobile-up - stack content until larger screens */
@media (max-width: 768px) {
	.hero {
		display: block;
		text-align: center;
		padding-top: 2rem;
	}
	
	.hero__img {
		margin-bottom: 2rem;
		max-width: 200px;
	}
	
	.hero__title {
		font-size: 32px;
		margin-bottom: 1.5rem;
		margin-top: 1rem;
	}
	
	.hero__copy {
		font-size: 16px;
		margin-bottom: 2rem;
	}
	
	.footer__socials {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem;
		text-align: center;
	}
	
	.footer__socials .socials ul {
		justify-content: center;
		gap: 1.25rem;
	}
}

/* Navigation stacking for medium screens */
@media (max-width: 900px) {
	.main-header {
		flex-direction: column !important;
		gap: 1rem;
		padding: 1rem 2rem;
		justify-content: center !important;
		align-items: center !important;
	}
	
	.nav-left {
		width: 100%;
		justify-content: center;
	}
	
	.socials {
		justify-content: center;
	}
	
	.socials ul {
		justify-content: center;
	}
}

/* Mobile responsive navigation */
@media (max-width: 599px) {
	.main-header {
		padding: 1rem;
	}
	
	.nav-left {
		flex-direction: column;
		gap: 1rem;
	}
	
	.main-nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.75rem;
	}
	
	.nav-link {
		font-size: 12px;
		padding: 0.25rem 0.75rem;
	}
	
	.socials img {
		height: 18px;
		width: auto;
	}
	
	.footer__socials {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.5rem 1rem;
	}
	
	.footer__socials .logo {
		font-size: 1.25rem;
	}
	
	.footer__socials .socials ul {
		justify-content: center;
		gap: 2rem;
	}
	
	.footer__socials .socials svg {
		width: 28px;
		height: 27px;
	}
	
	/* CodePen icon has different aspect ratio - needs special handling */
	.footer__socials .socials svg[viewBox="0 0 138 26"] {
		width: 55px;
		height: 10px;
	}

	.hero__title {
		font-size: 28px;
	}

	.hero__img {
		max-width: 150px;
	}
}

/* Very small mobile screens - larger touch targets */
@media (max-width: 480px) {
	.footer__socials .socials svg {
		width: 36px;
		height: 34px;
	}
	
	/* CodePen icon has different aspect ratio - needs special handling */
	.footer__socials .socials svg[viewBox="0 0 138 26"] {
		width: 70px;
		height: 13px;
	}
	
	.footer__socials .socials ul {
		gap: 2.5rem;
	}
	
	.footer__socials {
		gap: 2rem;
		padding: 2rem 1rem;
	}
}

/* tablet-portrait-up */
/* tablet-portrait-up */
@media (min-width: 769px) {
	/* GRID STYLES */
	.grid-layout {
		grid-template-columns: 2rem 1fr 2rem;
	}
	/* HEADER */
	.main-header {
		grid-column: 2 / 3;
		display: flex;
		align-items: baseline;
		justify-content: space-between;
	}
	.socials ul {
		margin-bottom: 0px;
	}
	/* HERO STYLES */
	.hero {
		display: grid;
		max-width: 100%;
		grid-template-columns: 70% 30%;
	}
	.hero__img {
		grid-column: 2 / 4;
		grid-row: 1 / 5;
		width: 322px;
	}
	.hero__title {
		font-size: 72px;
		grid-column: 1 / 3;
		grid-row: 1 / 3;
		text-align: left;
	}
	.hero__copy {
		grid-column: 1 / 3;
		grid-row: 3 / 4;
		font-size: 18px;
	}
	.hero .button {
		grid-column: 1 / 3;
		grid-row: 4 / 5;
		font-size: 16px;
	}
	/* SKILLS STYLES */
	.skills {
		border: none;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.skills p {
		margin-bottom: 62px;
	}
	/* PROJECTS STYLES */
	.projects {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 25px;
	}
	.projects__header {
		grid-column: 1 / span 2;
	}
	.project__img {
		max-width: 708px;
	}
	/* FOOTER */
	footer {
		grid-template-columns: 2rem 3rem 1fr 3rem 2rem;
	}
	.contact__cta {
		grid-column: 3 / 4;
	}
	footer form {
		grid-column: 3 / 4;
	}
	.footer__socials {
		grid-column: 2 / 5;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		border-top: 1px solid var(--clr-neutral-200);
	}
}
/* desktop-up */
@media (min-width: 1200px) {
	/* GRID STYLES */
	.grid-layout {
		grid-template-columns: 11rem 1fr 11rem;
	}
	/* HERO STYLES */
	.hero__img {
		max-width: none;
	}
	.hero__title {
		font-size: 88px;
	}
	/* SKILLS STYLES */
	.skills {
		grid-template-columns: 1fr 1fr 1fr;
	}
	/* PROJECTS STYLES */
	.projects__header {
		margin-top: 0;
	}
	.project__img {
		width: 540px;
	}
	/* FOOTER */
	footer {
		grid-template-columns: 11rem 1fr 31rem 11rem;
		column-gap: 2rem;
	}
	.contact__cta {
		grid-column: 2 / 3;
	}
	.contact__cta h2,
	.contact__cta p {
		text-align: left;
	}
	.contact__cta h2 {
		font-size: 88px;
	}
	.contact__cta p {
		font-size: 18px;
	}
	footer form {
		grid-column: 3 / 4;
		padding-inline: 0;
	}
	.footer__socials {
		grid-column: 2 / 4;
	}
}
/* BLOG STYLES */
.blog-hero {
	grid-column: 2 / 3;
	padding: 4rem 0 2rem;
	text-align: center;
}

.blog-hero__content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--clr-neutral-100);
}

.blog-hero__content p {
	font-size: 1.125rem;
	color: var(--clr-neutral-400);
	max-width: 600px;
	margin: 0 auto;
}

/* TAG FILTER STYLES */
.tag-filter {
	grid-column: 2 / 3;
	padding: 2rem 0;
	border-bottom: 1px solid var(--clr-neutral-700);
}

.tag-filter__content {
	text-align: center;
}

.tag-filter__content h3 {
	color: var(--clr-neutral-100);
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	font-weight: var(--fw-600);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
}

.tag-button {
	background: transparent;
	border: 2px solid var(--clr-neutral-600);
	color: var(--clr-neutral-300);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: var(--fw-500);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.tag-button:hover {
	border-color: var(--clr-accent);
	color: var(--clr-accent);
	background: rgba(46, 183, 180, 0.1);
}

.tag-button.active {
	background: var(--clr-accent);
	border-color: var(--clr-accent);
	color: var(--clr-neutral-900);
}

.card-category-tag {
	cursor: pointer;
	transition: all 0.3s ease;
}

.card-category-tag:hover {
	color: var(--clr-accent);
	background: rgba(46, 183, 180, 0.1);
}

.blog-listing {
	grid-column: 2 / 3;
	padding: 2rem 0 4rem;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.post-card {
	background: var(--clr-neutral-800);
	border: 1px solid var(--clr-neutral-700);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.post-card:hover {
	transform: translateY(-4px);
	border-color: var(--clr-accent-400);
}

.post-card__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.post-meta {
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.post-meta time {
	color: var(--clr-neutral-400);
	display: block;
	margin-bottom: 0.5rem;
}

.post-categories {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.category-tag {
	background: var(--clr-neutral-300);
	color: var(--clr-accent);
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.post-title {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	line-height: 1.4;
}

.post-title a {
	color: var(--clr-neutral-100);
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-title a:hover {
	color: var(--clr-accent-400);
}

.post-excerpt {
	color: var(--clr-neutral-200);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	color: var(--clr-accent-400);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	margin-top: auto;
}

.read-more-btn:hover {
	color: var(--clr-accent-300);
}

/* BLOG CARD SPECIFIC STYLES */
.post-card-meta {
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.post-card-meta time {
	color: var(--clr-neutral-400);
	display: block;
	margin-bottom: 0.5rem;
}

.post-card-categories {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.card-category-tag {
	background: var(--clr-neutral-300);
	color: var(--clr-accent);
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.post-card-title {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	line-height: 1.4;
}

.post-card-title a {
	color: var(--clr-neutral-100);
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-card-title a:hover {
	color: var(--clr-accent-400);
}

.post-card-excerpt {
	color: var(--clr-neutral-200);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.card-read-more-btn {
	display: inline-flex;
	align-items: center;
	color: var(--clr-accent-400);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	margin-top: auto;
}

.card-read-more-btn:hover {
	color: var(--clr-accent-300);
}

/* Active nav link indicator */
.nav-link.active {
	color: var(--clr-accent-400);
	position: relative;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--clr-accent-400);
}

/* Blog responsive styles */
@media (max-width: 900px) {
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.blog-hero__content h1 {
		font-size: 2rem;
	}
	
	.posts-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.post-card__content {
		padding: 1.25rem;
	}
	
	.post-card-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}

/* INDIVIDUAL BLOG POST STYLES */
.breadcrumb-nav {
	grid-column: 2 / 3;
	padding: 1rem 0;
	border-bottom: 1px solid var(--clr-neutral-800);
}

.breadcrumb-link {
	color: var(--clr-accent-400);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.breadcrumb-link:hover {
	color: var(--clr-accent-300);
}

.blog-post {
	grid-column: 2 / 3;
	max-width: 700px;
	margin: 0 auto;
	padding: 2rem 0 4rem;
}

.post-header {
	text-align: center;
	padding: 2rem 2rem 2rem 2rem;
	border-bottom: 1px solid var(--clr-neutral-700);
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 8px 8px 0 0;
}

.post-meta-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.post-date {
	color: var(--clr-neutral-400);
	font-size: 0.875rem;
}

.post-title {
	font-size: 2.5rem;
	line-height: 1.2;
	margin: 0 0 1rem 0;
	color: var(--clr-neutral-50);
}

.post-subtitle {
	font-size: 1.125rem;
	color: var(--clr-neutral-200);
	line-height: 1.6;
	margin: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.post-content {
	line-height: 1.8;
	color: var(--clr-neutral-100);
	background: rgba(255, 255, 255, 0.03);
	padding: 3rem 2rem;
	border-radius: 0 0 8px 8px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
	color: var(--clr-neutral-50);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.post-content h1 {
	font-size: 2rem;
	border-bottom: 2px solid var(--clr-accent);
	padding-bottom: 0.5rem;
}

.post-content h2 {
	font-size: 1.5rem;
	color: var(--clr-accent-200);
}

.post-content h3 {
	font-size: 1.25rem;
	color: var(--clr-accent-200);
}

.post-content p {
	margin-bottom: 1.5rem;
	color: var(--clr-neutral-100);
}

.post-content ul,
.post-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.post-content li {
	margin-bottom: 0.5rem;
}

.post-content a {
	color: var(--clr-accent);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.post-content a:hover {
	color: var(--clr-accent-200);
}

.post-content code {
	background: rgba(46, 183, 180, 0.1);
	color: var(--clr-accent-200);
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-size: 0.9em;
	border: 1px solid rgba(46, 183, 180, 0.2);
}

.post-content pre {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--clr-neutral-600);
	border-radius: 8px;
	padding: 1.5rem;
	overflow-x: auto;
	margin: 1.5rem 0;
}

.post-content pre code {
	background: none;
	padding: 0;
	color: var(--clr-neutral-100);
	border: none;
}

.post-content blockquote {
	border-left: 4px solid var(--clr-accent);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: rgba(46, 183, 180, 0.05);
	font-style: italic;
	color: var(--clr-neutral-100);
}

.post-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--clr-neutral-800);
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.nav-previous,
.nav-next {
	flex: 1;
	padding: 1rem;
	background: var(--clr-neutral-800);
	border: 1px solid var(--clr-neutral-700);
	border-radius: 8px;
	text-decoration: none;
	color: var(--clr-neutral-200);
	transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
	border-color: var(--clr-accent-400);
	background: var(--clr-neutral-750);
}

.nav-next {
	text-align: right;
}

.back-to-blog {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem 2rem;
	border-top: 1px solid var(--clr-neutral-700);
	background: linear-gradient(135deg, rgba(46, 183, 180, 0.05) 0%, rgba(46, 183, 180, 0.02) 100%);
}

.back-to-blog .button {
	display: inline-block;
	padding: 1rem 2rem;
	background: transparent;
	border: 2px solid var(--clr-accent);
	color: var(--clr-accent);
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.5px;
}

.back-to-blog .button:hover {
	background: var(--clr-accent);
	color: var(--clr-neutral-900);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 183, 180, 0.3);
}

/* Blog post responsive styles */
@media (max-width: 768px) {
	.post-title {
		font-size: 2rem;
	}
	
	.post-meta-header {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.post-navigation {
		flex-direction: column;
	}
	
	.nav-next {
		text-align: left;
	}
	
	.post-content pre {
		padding: 1rem;
		font-size: 0.875rem;
	}
	
	.blog-post {
		padding: 1rem 0 3rem;
	}
}

/* THANK YOU PAGE STYLES */
.thank-you-hero {
	grid-column: 2 / 3;
	padding: 6rem 0 4rem;
	text-align: center;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thank-you-content {
	max-width: 600px;
	margin: 0 auto;
}

.thank-you-content h1 {
	font-size: 3.5rem;
	margin-bottom: 2rem;
	color: var(--clr-neutral-100);
}

.thank-you-message {
	font-size: 1.25rem;
	color: var(--clr-neutral-200);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.thank-you-subtitle {
	font-size: 1rem;
	color: var(--clr-neutral-400);
	margin-bottom: 3rem;
}

.thank-you-actions {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.thank-you-actions .button {
	display: inline-block;
	padding: 1rem 2rem;
	background: transparent;
	border: 2px solid var(--clr-accent);
	color: var(--clr-accent);
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.thank-you-actions .button:hover {
	background: var(--clr-accent);
	color: var(--clr-neutral-900);
}

/* Thank you page responsive styles */
@media (max-width: 768px) {
	.thank-you-content h1 {
		font-size: 2.5rem;
	}
	
	.thank-you-message {
		font-size: 1.125rem;
	}
	
	.thank-you-actions {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.thank-you-actions .button {
		width: 100%;
		max-width: 300px;
	}
}

/* big-desktop-up */
@media (min-width: 1800px) {
}
