.dr1059alertsbrief {
	padding: 80px 20px;
	background: radial-gradient(circle at top, #0a0f2c, #020617);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.dr1059alertsbrief-container {
	max-width: 1300px;
	margin: auto;
	position: relative;
}

/* HEADER */
.dr1059alertsbrief-header {
	text-align: center;
	margin-bottom: 40px;
}

.dr1059alertsbrief-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(90deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1059alertsbrief-subtitle {
	color: #cbd5f5;
	max-width: 700px;
	margin: 10px auto;
}

/* CTA */
.dr1059alertsbrief-more {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 18px;
	border-radius: 12px;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

/* GRID */
.dr1059alertsbrief-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

/* CARD */
.dr1059alert-card {
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: 0.3s;
}

.dr1059alert-card:hover {
	transform: translateY(-8px);
}

/* MEDIA */
.dr1059alert-media img, .dr1059alert-media video {
	width: 100%;
	height: auto;
	max-height: 280px;
	object-fit: contain;
	border-radius: 12px;
}

/* CONTENT */
.dr1059alert-content h3 {
	margin: 10px 0 5px;
}

.dr1059alert-content p {
	color: #d1d5db;
	font-size: 0.95rem;
}