.dhgsb-gallery {
	display: grid;
	gap: 16px;
	margin: 30px auto;
	max-width: 1180px;
}

.dhgsb-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dhgsb-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dhgsb-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dhgsb-gallery-item {
	border-radius: 12px;
	margin: 0;
	overflow: hidden;
}

.dhgsb-gallery-item img {
	aspect-ratio: 4 / 3;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.dhgsb-feed {
	display: grid;
	gap: 24px;
	margin: 30px auto;
	max-width: 720px;
}

.dhgsb-post {
	background: #fff;
	border: 1px solid #e6e1dc;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(42, 26, 11, .05);
	overflow: hidden;
}

.dhgsb-post-head {
	align-items: center;
	display: flex;
	gap: 12px;
	padding: 16px 18px;
}

.dhgsb-post-head strong,
.dhgsb-post-head time {
	display: block;
	font-size: 14px;
	line-height: 1.35;
}

.dhgsb-post-head time {
	color: #70675f;
}

.dhgsb-avatar {
	align-items: center;
	background: #8a572c;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.dhgsb-photo img {
	aspect-ratio: 16 / 10;
	display: block;
	object-fit: cover;
	width: 100%;
}

.dhgsb-copy {
	padding: 18px 20px 10px;
}

.dhgsb-copy h2 {
	font-size: clamp(20px, 3vw, 25px);
	line-height: 1.25;
	margin: 0 0 10px;
}

.dhgsb-copy h2 a {
	color: #241a13;
	text-decoration: none;
}

.dhgsb-copy p {
	color: #534a43;
	margin: 0;
}

.dhgsb-actions {
	border-top: 1px solid #efe9e4;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 14px;
	padding: 14px 20px 16px;
}

.dhgsb-actions a {
	color: #8a572c;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 700px) {
	.dhgsb-cols-3,
	.dhgsb-cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 460px) {
	.dhgsb-gallery {
		grid-template-columns: 1fr;
	}
}
