.dr1013overview {
	background: linear-gradient(135deg, #e3f2fd 0%, #f0f4c3 100%);
	color: #333;
	line-height: 1.6;
}

.dr1013overview .container {
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
}

.dr1013overview .intro {
	text-align: center;
	margin-bottom: 3rem;
}

.dr1013overview .intro h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1976d2;
}

.dr1013overview .intro p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 1.5rem;
}

.dr1013overview .more-info-btn {
	display: inline-block;
	background-color: #1976d2;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
	margin-top: 1rem;
}

.dr1013overview .more-info-btn:hover {
	background-color: #125ea3;
}

.dr1013overview .video-section {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	position: relative;
}

.dr1013overview .video-wrapper {
	width: 100%;
	max-width: 800px;
	position: relative;
}

.dr1013overview .native-video video {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Sticky wrapper container */
.dr1013overview .sticky-video-wrapper {
	position: fixed !important;
	bottom: 20px;
	right: 20px;
	width: 300px !important;
	z-index: 9999;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	background-color: #fff;
	transition: all 0.3s ease-in-out;
}

/* Optional: resize video in sticky mode */
.dr1013overview .sticky-video {
	width: 100% !important;
	border-radius: 12px;
}

/* Close button */
.close-button {
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 20px;
	cursor: pointer;
	z-index: 10000;
	display: none;
}

.dr1013overview .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.dr1013overview .gallery-card {
	background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 0.5rem;
}

.dr1013overview .gallery-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dr1013overview .gallery-card img {
	width: 100%;
	height: auto;
	display: block;
}

.dr1013overview #more {
	background-color: #e3f2fd;
	padding: 2rem;
	border-radius: 10px;
	margin-bottom: 2rem;
}

.dr1013overview #more h3 {
	color: #1976d2;
	margin-bottom: 1rem;
}

.dr1013overview #more ul {
	list-style: disc;
	padding-left: 1.5rem;
	color: #555;
}