/* =========================
   Dream Tour Notice Archive
========================= */

.dreamtour-notice-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.dreamtour-notice-item {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.04);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dreamtour-notice-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.dreamtour-notice-link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 120px;
	gap: 18px;
	align-items: center;
	padding: 22px 24px;
	text-decoration: none;
}

.dreamtour-notice-main {
	min-width: 0;
}

.dreamtour-notice-title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	color: #111;
}

.dreamtour-notice-excerpt {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.dreamtour-notice-date {
	text-align: right;
	font-size: 14px;
	font-weight: 600;
	color: #888;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.dreamtour-notice-link {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 18px 16px;
	}

	.dreamtour-notice-title {
		font-size: 17px;
	}

	.dreamtour-notice-date {
		text-align: left;
		font-size: 13px;
	}
}


/* =========================
   Dream Tour Notice Single
========================= */

.dreamtour-notice-single-meta {
	margin-top: 10px;
	font-size: 14px;
	color: #777;
}

.dreamtour-notice-single-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.dreamtour-notice-single-content {
	padding: 32px;
}

.dreamtour-notice-single-content h2,
.dreamtour-notice-single-content h3,
.dreamtour-notice-single-content h4 {
	color: #111;
	margin-top: 0;
}

.dreamtour-notice-single-content p,
.dreamtour-notice-single-content li {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
}

.dreamtour-notice-single-content ul,
.dreamtour-notice-single-content ol {
	padding-left: 20px;
}

.dreamtour-notice-single-bottom {
	padding: 0 32px 32px;
}

.dreamtour-notice-back {
	display: inline-flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: 10px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.dreamtour-notice-back:hover {
	opacity: .92;
}

@media (max-width: 768px) {
	.dreamtour-notice-single-content {
		padding: 24px;
	}

	.dreamtour-notice-single-bottom {
		padding: 0 24px 24px;
	}
}
