.bbq-split-contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

.bbq-contact-left-col {
    width: 100%;
    box-sizing: border-box;
}

.bbq-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    display: inline-block;
}

.bbq-persons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bbq-person-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid #e35e26;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bbq-person-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.bbq-person-photo-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eaeaea;
}

.bbq-person-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bbq-person-details {
    flex-grow: 1;
}

.bbq-person-meta {
    margin-bottom: 8px;
}

.bbq-person-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.bbq-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background-color: #e35e26;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bbq-person-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bbq-person-link {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bbq-person-link:hover {
    color: #e35e26;
}

.bbq-icon {
    font-size: 14px;
}

@media (max-width: 768px) {
    .bbq-person-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bbq-person-photo-wrap {
        width: 70px;
        height: 70px;
    }
}
