/* Indent for experience and education items */
.indent-block {
	margin-left: 2.5rem;
}
/* Instagram embed grid for project2.html */
.instagram-embed-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: flex-start;
}
.instagram-embed-grid > blockquote.instagram-media {
	flex: 1 1 45%;
	max-width: 400px;
	min-width: 280px;
	box-sizing: border-box;
}
@media (max-width: 900px) {
	.instagram-embed-grid {
		flex-direction: column;
		gap: 1.5rem;
	}
	.instagram-embed-grid > blockquote.instagram-media {
		flex-basis: 100%;
		max-width: 100%;
		min-width: 0;
	}
}
.img-text-row.left img {
	float: left;
	margin: 0 2rem 1rem 0;
}

.img-text-row.right img {
	float: right;
	margin: 0 0 1rem 2rem;
}

/* --- Project1 Page Styles --- */
.project-overview-grid {
	display: grid;
	grid-template-columns: 1fr 640px;
	gap: 2rem;
	align-items: start;
}
.project-overview-left {
	min-width: 20pc;
}
/* Project overview right: contain iframe to a reasonable width and keep aspect ratio */
.project-overview-right {
	display: flex;
    /* Removed justify-content to keep iframe close to left content */
}
.project-overview-right iframe {
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4 / 3;
	height: auto;
	display: block;
	border: none;
}
@media (max-width: 900px) {
	.project-overview-grid {
		grid-template-columns: 1fr;
	}
	.project-overview-right {
		justify-content: flex-start;
	}
	.project-overview-right iframe {
		width: 100% !important;
		max-width: 100vw;
		height: auto !important;
		min-width: 0;
		min-height: 50vw;
	}
}
/* Magazine-style: paragraphs in one column, image floated inside text */
.img-text-row {
	display: block;
	margin-bottom: 2.2rem;
	position: relative;
}
.img-text-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 2.2rem;
	position: relative;
}
.img-text-row img {
	flex: 1 1 45%;
	max-width: 48%;
	min-width: 180px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	margin: 0 0 1rem 0;
	display: block;
}
.img-text-row p {
	margin-top: 0;
	margin-bottom: 1rem;
}
@media (max-width: 900px) {
	.img-text-row img {
		float: none;
		display: block;
		max-width: 80%;
		margin: 0.5rem auto 1rem auto;
	}
}
/* Project tiles grid */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.project-tile {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	padding: 1rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s;
}
.project-tile:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.project-tile img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 0.7rem;
	background: #eee;
}
.project-tile h3 {
	margin: 0.3rem 0 0.5rem 0;
	font-size: 1.1rem;
	color: var(--primary);
}
.project-tile p {
	font-size: 0.97rem;
	color: #444;
	margin: 0;
}







/* Resume Vibe Main Styles */
:root {
	--primary: #2d3a4b;
	--accent: #4ecca3;
	--bg: #f7f7f7;
	--text: #222;
}
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: "Work Sans", sans-serif;
	background: var(--bg);
	color: var(--text);
}
header {
	background: var(--primary);
	color: #fff;
	padding: 2rem 1rem 1rem 1rem;
	text-align: center;
}
header h1 {
	margin: 0 0 0.5rem 0;
	font-size: 2.5rem;
}
header p {
	margin: 0.2rem 0 0 0;
	font-size: 1.2rem;
	color: var(--accent);
}
nav {
	margin-top: 1rem;
}
nav a {
	color: #fff;
	text-decoration: none;
	margin: 0 1rem;
	font-weight: 500;
	transition: color 0.2s;
}
nav a:hover {
	color: var(--accent);
}
main {
	max-width: 900px;
	margin: 2rem auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	padding: 2rem;
}
section {
	margin-bottom: 2rem;
}
h2 {
	color: var(--primary);
	margin-bottom: 1rem;
	font-size: 1.75rem;
}
ul {
	padding-left: 1.2rem;
}
.skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	list-style: none;
	padding: 0;
}
.skills-list li {
	background: var(--accent);
	color: #fff;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 1rem;
}
.exp-item, .edu-item {
	margin-bottom: 1.2rem;
}
.exp-title, .edu-title {
	font-weight: bold;
	font-size: 1.1rem;
}
.exp-date, .edu-date {
	color: #888;
	font-size: 0.95rem;
}
.contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.contact a {
	color: var(--primary);
	text-decoration: none;
}
.contact a:hover {
	text-decoration: underline;
}
@media (max-width: 900px) {
	main {
		padding: 1rem;
	}
	header h1 {
		font-size: 2rem;
	}
}

/* Work Sans font classes for all weights and italics */

.thin-100 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.thin-100-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: italic;
}
.extralight-200 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.extralight-200-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: italic;
}
.light-300 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.light-300-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
}
.regular-400 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.regular-400-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}
.medium-500 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.medium-500-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}
.semibold-600 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.semibold-600-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}
.bold-700 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.bold-700-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}
.extrabold-800 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.extrabold-800-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
}
.black-900 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.black-900-italic {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: italic;
}