.experts-speak-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.expert-photo-name {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.expert-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.expert-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.expert-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.expert-company {
    font-size: 14px;
    color: #888;
}

/* Experts Speak section on posts */
.experts-speak-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0927d7;
}

.experts-speak-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0927d7;
    font-size: 1.4em;
}

.experts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-item.stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.expert-item.stacked .expert-photo-name {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.expert-item.stacked .expert-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-item.stacked .expert-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.expert-item.stacked .expert-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.expert-item.stacked .expert-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.expert-item.stacked .expert-company {
    font-size: 14px;
    color: #888;
}