.home-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 1.5rem;
	align-items: start;
}
.home-left, .home-right { display: flex; flex-direction: column; gap: 1.5rem; }
.home-card {
	background-color: var(--ctp-surface0);
	border: 1px solid var(--ctp-surface1);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	transition: border-color 0.2s;
}
.home-card h2, .home-card h3 { margin-bottom: 0.25rem; }
.about-card .about-header { display: flex; gap: 1.25rem; align-items: flex-start; }
.about-card .about-text p { color: var(--ctp-subtext0); margin-bottom: 1rem; }
.posts-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.posts-header h2, .posts-header h3 { margin: 0; }
.view-all-link { font-size: 0.9rem; color: var(--ctp-blue); text-decoration: none; font-weight: 600; }
.view-all-link:hover { color: var(--ctp-sky); text-decoration: none; }
.posts-list { list-style: none; padding: 0; margin: 0; }
.post-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--ctp-surface1); gap: 1rem; margin-bottom: 0; }
.post-item:last-child { border-bottom: none; }
.post-title { color: var(--ctp-text); font-weight: 600; font-size: 0.95rem; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.post-title:hover { color: var(--ctp-blue); text-decoration: none; }
.post-date { color: var(--ctp-overlay1); font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }
.link-card { display: block; text-decoration: none; color: inherit; }
.link-card:hover { border-color: var(--ctp-mauve); text-decoration: none; }
.link-card-inner { display: flex; align-items: center; gap: 1rem; }
.link-card-inner div { flex: 1; }
.link-card-inner h3 { margin: 0 0 0.15rem 0; color: var(--ctp-lavender); }
.link-card-inner p { margin: 0; font-size: 0.85rem; color: var(--ctp-subtext0); }
.link-card .arrow { color: var(--ctp-overlay1); font-size: 1.1rem; font-weight: bold; transition: transform 0.2s, color 0.2s; }
.link-card:hover .arrow { color: var(--ctp-mauve); transform: translate(2px, -2px); }
.carousel-wrapper { display: flex; align-items: center; gap: 0.5rem; }
.carousel-track-container { flex: 1; overflow: hidden; }
.carousel-track { display: flex; gap: 0.75rem; transition: transform 0.3s ease; }
.carousel-item { min-width: 140px; flex-shrink: 0; background: var(--ctp-surface1); border: 1px solid var(--ctp-surface2); border-radius: var(--radius-base); padding: 0.85rem 1rem; text-decoration: none; display: flex; flex-direction: column; gap: 0.3rem; transition: border-color 0.2s, transform 0.2s; }
.carousel-item:hover { border-color: var(--ctp-blue); transform: translateY(-2px); text-decoration: none; }
.carousel-item-title { color: var(--ctp-text); font-weight: 700; font-size: 0.9rem; }
.carousel-item-desc { color: var(--ctp-subtext0); font-size: 0.78rem; line-height: 1.3; }
.carousel-btn { background: var(--ctp-surface1); border: 1px solid var(--ctp-surface2); color: var(--ctp-text); border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; padding: 0; line-height: 1; }
.carousel-btn:hover { background: var(--ctp-surface2); border-color: var(--ctp-blue); }
@media (max-width: 720px) {
	.home-grid { grid-template-columns: 1fr; }
	.about-card .about-header { flex-direction: column; align-items: center; text-align: center; }
}