/* --- Base Card Container --- */
.wpbdp-single-card-theme {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    font-family: Arial, sans-serif; /* Adjust to your site's font */
}

/* --- Header & Image --- */
.wpbdp-card-header {
    position: relative;
    padding: 30px;
    text-align: center;
    background-color: #f8f8f8;
}

.wpbdp-card-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wpbdp-listing-title {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.wpbdp-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffa500;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

/* --- Content Sections --- */
.wpbdp-card-content {
    padding: 30px;
}

.wpbdp-details-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eeeeee;
}

.wpbdp-details-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wpbdp-details-section h3 {
    font-size: 20px;
    color: #007bff; /* Accent color for section headings */
    border-left: 4px solid #007bff;
    padding-left: 10px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- Contact Info Icons --- */
.wpbdp-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.wpbdp-contact-info i {
    color: #555;
    margin-right: 10px;
    width: 18px; /* Fixed width for consistent alignment */
    text-align: center;
}

/* --- Footer (Categories) --- */
.wpbdp-card-footer {
    background-color: #fafafa;
    padding: 15px 30px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.wpbdp-card-footer a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.wpbdp-card-footer a:hover {
    text-decoration: underline;
}