/* Midori stylesheet - Organic balcony gardening theme */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #fbfdf7;
	color: #333f35;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1.7;
	font-size: 16px;
}

.vg-wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 15px;
}

.vg-header {
	background-color: #2e6f40;
	color: #ffffff;
	padding: 20px 0;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	border-bottom: 4px solid #c16c3b;
}

.vg-logo {
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
	display: inline-block;
}

.vg-logo-sub {
	font-size: 12px;
	color: #e2f0d9;
	margin-top: 3px;
}

.vg-hero {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(0,0,0,0.04);
	margin-bottom: 40px;
	border: 1px solid #e1ebde;
}

.vg-hero-content {
	padding: 30px;
}

.vg-tag {
	display: inline-block;
	background-color: #c16c3b;
	color: #ffffff;
	padding: 3px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 20px;
	margin-bottom: 12px;
}

.vg-title {
	font-size: 28px;
	color: #2e6f40;
	margin-bottom: 15px;
	font-weight: 700;
}

.vg-intro {
	color: #556257;
	font-size: 16px;
	line-height: 1.8;
}

.vg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.vg-card {
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0,0,0,0.03);
	border: 1px solid #e2ece0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.vg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.07);
}

.vg-card-img-placeholder {
	height: 160px;
	background-color: #e2f0d9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2e6f40;
	font-weight: bold;
	font-size: 20px;
	background-size: cover;
	background-position: center;
}

.vg-card-body {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.vg-card-title {
	font-size: 18px;
	color: #2e6f40;
	margin-bottom: 10px;
	font-weight: 700;
}

.vg-card-desc {
	font-size: 14px;
	color: #556257;
	margin-bottom: 15px;
	flex-grow: 1;
}

.vg-btn {
	display: inline-block;
	background-color: #2e6f40;
	color: #ffffff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	transition: background-color 0.2s ease;
	border: none;
	cursor: pointer;
}

.vg-btn:hover {
	background-color: #235431;
}

.vg-btn-orange {
	background-color: #c16c3b;
}

.vg-btn-orange:hover {
	background-color: #a4582f;
}

.vg-article {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
	border: 1px solid #e1ebde;
	margin-bottom: 40px;
}

.vg-article-h2 {
	font-size: 24px;
	color: #2e6f40;
	border-bottom: 2px solid #2e6f40;
	padding-bottom: 10px;
	margin-bottom: 20px;
	margin-top: 30px;
}

.vg-article-h2:first-of-type {
	margin-top: 0;
}

.vg-article-h3 {
	font-size: 18px;
	color: #c16c3b;
	margin: 20px 0 10px 0;
}

.vg-article-p {
	margin-bottom: 18px;
	font-size: 15px;
	line-height: 1.8;
}

.vg-list {
	margin-left: 20px;
	margin-bottom: 20px;
}

.vg-list-item {
	margin-bottom: 8px;
}

.vg-sidebar-waku {
	background-color: #eef5ec;
	border-left: 4px solid #2e6f40;
	padding: 20px;
	margin: 25px 0;
	border-radius: 0 8px 8px 0;
}

.vg-newsletter-box {
	background-color: #f0f7f2;
	border: 2px dashed #2e6f40;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	margin-top: 40px;
}

.vg-newsletter-title {
	font-size: 20px;
	color: #2e6f40;
	margin-bottom: 10px;
	font-weight: 700;
}

.vg-input {
	width: 100%;
	max-width: 380px;
	padding: 12px 15px;
	border: 1px solid #c8d3c5;
	border-radius: 6px;
	font-size: 15px;
	margin-bottom: 15px;
	background-color: #ffffff;
}

.vg-footer {
	background-color: #28332a;
	color: #a4b2a6;
	padding: 40px 0 20px 0;
	margin-top: 60px;
	font-size: 13px;
	border-top: 4px solid #2e6f40;
}

.vg-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid #3c4c3f;
	padding-bottom: 20px;
}

.vg-footer-link {
	color: #a4b2a6;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vg-footer-link:hover {
	color: #ffffff;
}

.vg-copyright {
	text-align: center;
	color: #728074;
	font-size: 12px;
}

@media (max-width: 768px) {
	.vg-article {
		padding: 20px;
	}
	.vg-title {
		font-size: 22px;
	}
	.vg-footer-links {
		flex-direction: column;
		gap: 12px;
	}
}
