/* WealthYatra Substack Blog */

.wy-sb {
	--wy-gold: #c9a247;
	--wy-gold-dark: #b08d3a;
	--wy-ink: #1a2744;
	--wy-muted: #6b7280;
	--wy-line: #e5e2dc;
	--wy-bg: #ffffff;
	--wy-page: #faf8f4;
	font-family: inherit;
	color: var(--wy-ink);
	max-width: 1240px;
	margin: 0 auto;
	padding: 28px 16px 72px;
	box-sizing: border-box;
}

/* Tighten gap under Creote page banner */
.page-wealth-yatra-blog .page_header_default.style_one {
	margin-bottom: 0;
	padding-bottom: 48px;
	min-height: 220px;
}

.page-wealth-yatra-blog #content,
.page-wealth-yatra-blog #primary.content-area,
.page-wealth-yatra-blog .content-area,
.page-wealth-yatra-blog .auto-container.auto_container,
.page-wealth-yatra-blog .entry-content,
.page-wealth-yatra-blog .content_boxed {
	padding-top: 0;
	margin-top: 0;
}

.page-wealth-yatra-blog .default_row {
	margin-top: 0;
}

.wy-sb *,
.wy-sb *::before,
.wy-sb *::after {
	box-sizing: border-box;
}

/* Newsletter at bottom */
.wy-sb__newsletter {
	display: flex;
	justify-content: center;
	margin: 48px 0 0;
	padding-top: 36px;
	border-top: 1px solid var(--wy-line);
}

.wy-sb__newsletter iframe {
	max-width: 100%;
	width: 480px;
	height: 320px;
	border: 1px solid #eee;
	background: #fff;
}

/* Error */
.wy-sb__error {
	padding: 28px 24px;
	border: 1px solid #f0d9a8;
	border-radius: 12px;
	background: #fffaf0;
	text-align: center;
	margin-bottom: 24px;
}

.wy-sb__error-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--wy-ink);
}

.wy-sb__error-text {
	margin: 0;
	color: var(--wy-muted);
	font-size: 14px;
}

/* Optional categories */
.wy-sb__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.wy-sb__cat {
	padding: 8px 14px;
	border: 1px solid var(--wy-line);
	border-radius: 999px;
	background: #f7f5f2;
	color: var(--wy-ink);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.wy-sb__cat.is-active {
	background: var(--wy-gold);
	border-color: var(--wy-gold);
	color: #fff;
}

/* Layout */
.wy-sb__layout {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	grid-template-areas:
		"top top"
		"years main";
	column-gap: 32px;
	row-gap: 0;
	align-items: start;
}

.wy-sb__top {
	grid-area: top;
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	column-gap: 32px;
	align-items: center;
	margin-bottom: 16px;
}

.wy-sb__years {
	grid-area: years;
}

.wy-sb__main {
	grid-area: main;
	min-width: 0;
}

/* Years */
.wy-sb__years-title {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wy-gold-dark);
	line-height: 1.3;
}

.wy-sb__years-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wy-sb__year {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 0;
	border: 0;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	background: transparent;
	color: var(--wy-ink);
	font-size: 15px;
	cursor: pointer;
	text-align: left;
}

.wy-sb__year-count {
	color: var(--wy-muted);
	font-size: 14px;
}

.wy-sb__year.is-active {
	font-weight: 700;
	border-top-color: var(--wy-gold);
	border-bottom-color: var(--wy-gold);
	color: var(--wy-ink);
}

.wy-sb__year.is-active .wy-sb__year-count {
	color: var(--wy-ink);
	font-weight: 700;
}

/* Toolbar — same line as Archives by Year */
.wy-sb__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin: 0;
	min-height: 28px;
	padding: 4px 0;
}

.wy-sb__count {
	margin: 0;
	padding: 2px 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--wy-muted);
}

.wy-sb__sort-bar {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.wy-sb__sort-label {
	font-size: 14px;
	color: var(--wy-muted);
}

.wy-sb__sort-dropdown {
	position: relative;
}

.wy-sb__sort-trigger {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--wy-ink);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.wy-sb__sort-trigger:focus-visible {
	outline: 2px solid var(--wy-gold);
	outline-offset: 2px;
	border-radius: 4px;
}

.wy-sb__sort-chevron {
	transition: transform 0.15s ease;
}

.wy-sb__sort-dropdown.is-open .wy-sb__sort-chevron {
	transform: rotate(180deg);
}

.wy-sb__sort-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	z-index: 20;
	min-width: 120px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	border: 1px solid var(--wy-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}

.wy-sb__sort-menu[hidden] {
	display: none;
}

.wy-sb__sort-menu li {
	padding: 8px 14px;
	font-size: 14px;
	cursor: pointer;
}

.wy-sb__sort-menu li:hover,
.wy-sb__sort-menu li[aria-selected="true"] {
	background: #f7f5f2;
	color: var(--wy-gold-dark);
}

/* Grid — max 4 cards per row */
.wy-sb__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

/* Card — bordered white tile */
.wy-sb__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--wy-bg);
	border: 1px solid var(--wy-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(26, 39, 68, 0.03);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.wy-sb__card:hover {
	border-color: #d9d3c8;
	box-shadow: 0 6px 18px rgba(26, 39, 68, 0.07);
}

.wy-sb__card.is-hidden {
	display: none;
}

.wy-sb__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f0ebe3;
	color: var(--wy-gold);
	text-decoration: none;
}

.wy-sb__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wy-sb__placeholder {
	width: 100%;
	height: 100%;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #f7f4ee 0%, #ebe4d6 100%);
	color: var(--wy-gold);
}

.wy-sb__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 12px 14px;
	flex: 1;
}

/* Category pill */
.wy-sb__cat-label {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 999px;
	background: #f3ead4;
	color: var(--wy-gold-dark);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.wy-sb__card-title {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	min-height: 2.7em;
}

.wy-sb__card-title a {
	color: var(--wy-ink);
	text-decoration: none;
}

.wy-sb__card-title a:hover {
	color: var(--wy-gold-dark);
}

.wy-sb__date {
	margin: 0;
	font-size: 12px;
	line-height: 1.3;
	color: var(--wy-muted);
}

.wy-sb__read {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	align-self: flex-end;
	margin-top: auto;
	padding: 2px 0 0;
	border: 0;
	background: none;
	color: var(--wy-gold-dark);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.wy-sb__read-arrow {
	transition: transform 0.2s ease;
}

.wy-sb__read:hover {
	color: var(--wy-gold);
}

.wy-sb__read:hover .wy-sb__read-arrow {
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 980px) {
	.wy-sb__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.wy-sb__layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"top"
			"years"
			"main";
		row-gap: 16px;
	}

	.wy-sb__top {
		grid-template-columns: 1fr;
		row-gap: 10px;
		margin-bottom: 0;
	}

	.wy-sb__years-list {
		display: flex;
		flex-wrap: wrap;
		gap: 8px 16px;
	}

	.wy-sb__year {
		width: auto;
		gap: 10px;
		padding: 8px 0;
	}

	.wy-sb__year.is-active {
		border-top-color: transparent;
		border-bottom-color: var(--wy-gold);
	}
}

@media (max-width: 720px) {
	.wy-sb__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (max-width: 560px) {
	.wy-sb__grid {
		grid-template-columns: 1fr;
	}

	.wy-sb__toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.wy-sb__newsletter {
		margin-top: 36px;
		padding-top: 28px;
	}

	.wy-sb__newsletter iframe {
		height: 360px;
	}

	.wy-sb__card-title {
		min-height: 0;
	}
}
