/**
 * Kursleiter-Profil Block Styles
 */

.ecm-trainer-profile {
    margin-bottom: 2rem;
}

.ecm-trainer-profile__inner {
    display: flex;
    gap: 2rem;
}

.ecm-trainer-profile__image {
    flex: 0 0 150px;
}

.ecm-trainer-profile__image img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ecm-trainer-profile__content {
    flex: 1;
}

.ecm-trainer-profile__header {
    margin-bottom: 1rem;
}

.ecm-trainer-profile__name {
    margin: 0 0 0.25rem 0;
    font-size: 1.5em;
}

.ecm-trainer-profile__position {
    margin: 0;
    color: #666;
    font-style: italic;
}

.ecm-trainer-profile__bio {
    margin-bottom: 1.5rem;
}

.ecm-trainer-profile__contact,
.ecm-trainer-profile__social {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.ecm-trainer-profile__contact h4,
.ecm-trainer-profile__social h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1em;
}

.ecm-trainer-profile__email,
.ecm-trainer-profile__phone,
.ecm-trainer-profile__website {
    margin: 0.5rem 0;
}

.ecm-trainer-profile__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
	justify-content: center;
}

.ecm-social-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.875em;
    transition: background-color 0.2s;
}

.ecm-social-link:hover {
    background-color: #005a87;
    color: white;
}

.ecm-trainer-profile__footer {
    margin-top: 1.5rem;
}

.ecm-trainer-profile__link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.ecm-trainer-profile__link:hover {
    background-color: #005a87;
    color: white;
}

/* Sidebar-Layout Styles */
.ecm-trainer-profile--sidebar {
    width: 100%;
}

.ecm-trainer-profile__sidebar-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header-Bereich: Bild und Name nebeneinander */
.ecm-trainer-profile__sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ecm-trainer-profile__sidebar-image {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
}

.ecm-trainer-profile__sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ecm-trainer-profile__sidebar-name {
    flex: 1;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__name {
    margin: 0;
    font-size: 1.3em;
    line-height: 1.2;
}

/* Content-Bereich */
.ecm-trainer-profile__sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__position {
    margin: 0;
    font-weight: 600;
    color: #555;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__bio {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__contact {
    background: transparent;
    padding: 0;
    margin: 0;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__contact h4 {
    margin: 0 0 8px 0;
    font-size: 1em;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__contact p {
    margin: 5px 0;
    font-size: 0.9em;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__footer {
    margin: 10px 0 0 0;
}

.ecm-trainer-profile--sidebar .ecm-trainer-profile__link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Responsive: Bild und Name untereinander bei kleinen Bildschirmen */
@media (max-width: 480px) {
    .ecm-trainer-profile__sidebar-header {
        flex-direction: column;
        text-align: center;
    }
    
    .ecm-trainer-profile__sidebar-name {
        text-align: center;
    }
}

/* Minimal Layout (angepasst) - jetzt ist es das alte Vollständig */
.ecm-trainer-profile--minimal .ecm-trainer-profile__inner {
    display: flex;
    gap: 2rem;
}

.ecm-trainer-profile--minimal .ecm-trainer-profile__image {
    flex: 0 0 150px;
}

.ecm-trainer-profile--minimal .ecm-trainer-profile__image img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ecm-trainer-profile--minimal .ecm-trainer-profile__content {
    flex: 1;
}

/* Vollständig Layout (angepasst) - jetzt ist es das alte Minimal */
.ecm-trainer-profile--full .ecm-trainer-profile__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ecm-trainer-profile--full .ecm-trainer-profile__image {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .ecm-trainer-profile__inner {
        flex-direction: column;
    }
    
    .ecm-trainer-profile__image {
        margin: 0 auto 1.5rem;
        text-align: center;
    }
}