/* MAIN SECTION */
.dr1047proprietor {
	padding: 40px 12px;
	background: linear-gradient(135deg, #1c1c1c, #4c3b27);
	color: #fff8e1;
	font-family: 'Poppins', sans-serif;
	position: relative;
	/* FIX CROPPING */
	overflow: visible !important;
}

/* CONTAINER */
.dr1047proprietor-container {
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.8s ease;
}

/* TEXT AREA */
.dr1047proprietor-content {
	flex: 1 1 100%;
	text-align: center;
}

.dr1047proprietor-title {
	font-size: 1.7rem;
	font-weight: 800;
	color: #ffdd57;
	margin-bottom: 10px;
}

.dr1047proprietor-sub, .dr1047proprietor-contact, .dr1047proprietor-note,
	.dr1047proprietor-special {
	font-size: 1rem;
	line-height: 1.4;
}

/* BUTTONS */
.dr1047proprietor-buttons {
	margin-top: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.dr1047proprietor-buttons a {
	padding: 10px 22px;
	border-radius: 22px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}

/* BADGE IMAGE */
.dr1047proprietor-badge {
	flex: 1 1 100%;
	text-align: center;
}

.dr1047proprietor-badge img {
	width: 70px;
	height: 70px;
	padding: 10px;
	border-radius: 50%;
	border: 3px solid #ffd700;
	background: #fffbe6;
	/* FIX CROPPING */
	max-width: 100%;
}

/* MOBILE FIX */
@media ( max-width : 480px) {
	.dr1047proprietor {
		padding: 30px 8px;
	}
	.dr1047proprietor-title {
		font-size: 1.45rem;
	}
	.dr1047proprietor-special {
		font-size: 0.95rem;
	}
	.dr1047proprietor-buttons a {
		width: 100%;
		text-align: center;
	}
}

/* APPEAR ANIMATION */
.fade-in-active {
	opacity: 1 !important;
	transform: translateY(0) !important;
}