ul.award-badges {
    list-style: none;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px; /* Adjust spacing between items */
}

ul.award-badges li {
    width: 70px; /* Set the square width */
    height: 70px; /* Set the square height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.award-badges li img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image scales proportionally */
}


.provider-featured-video {
    position: relative;
    width: 100%; /* Full width of the parent */
/*     max-width: 800px; /* Optional: Set a max width */
    aspect-ratio: 16 / 9; /* Maintains a 16:9 aspect ratio */
    overflow: hidden;
	border: 12px solid #fff;
	box-shadow: 3px 3px 20px rgba(0,0,0,.15);
	margin: 2em 0;
}

.provider-featured-video iframe,
.provider-featured-video embed,
.provider-featured-video object,
.provider-featured-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.provider-doctor-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	list-style: none;
	padding: 0 !important;
}

.provider-doctor-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px; /* Ensuring the padding is as specified */
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	height: 40px; /* Fixed height */
	min-width: 100px; /* Ensuring flexibility for various text lengths */
	text-decoration: none;
	background: #fff;
}

.provider-doctor-links a:hover {
	box-shadow: 2px 2px 8px rgba(0,0,0,.1);
}

.provider-doctor-links svg {
	height: 30px; /* Set a fixed height for the SVG */
	width: auto; /* Maintain aspect ratio */
	max-width: 100%; /* Ensure it doesn't overflow */
}

