.aac-authors-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.aac-author-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-decoration: none !important; /* Important for links */
    color: inherit; /* Make sure text colors stay normal */
    transition: box-shadow 0.3s ease;
	cursor: pointer;
	align-items: center;
}

.aac-author-image {
    margin-right: 20px;
    flex-shrink: 0;
}

.aac-author-image img {
    width: 120px;
    height: 120px  !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 100% 100% 100% 100% !important;
}

.aac-author-details {
    flex-grow: 1;
}

.aac-author-name {
    margin: 0;
	line-height: 28px;
}

.aac-author-details h3 {
	font-size: 24px !important;
	font-family: "Bebas Neue", Sans-serif !important;
	font-weight: 500 !important;
	line-height: 30px !important;
	color: #003865 !important
}

.aac-author-title-location {
    color: #003865;
	font-family: "Bebas Neue", Sans-serif !important;
	font-size: 20px;
	font-weight: 400 !important;
	text-transform: uppercase;
	margin: 0px;
	line-height: 28px;
}

.aac-author-email,
.aac-author-phone,
.aac-author-location {
	margin: 0px !important;
	line-height: 22px;
}

.aac-author-email a,
.aac-author-phone a,
.aac-author-location {
    text-decoration: none !important;
    color: #003865;
	margin: 0px !important;
	font-size: 14px;
	font-weight: 500;
	font-family: "Montserrat", Sans-serif;
}

.aac-author-email a:hover,
.aac-author-phone a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .aac-author-card {
        flex-direction: column;
        text-align: left;
    }

    .aac-author-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
