/* --- ZÁKLADNÍ STYL PRO AMBASADORY --- */
.ambasadori-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    overflow: hidden;
}

.ambasadori-story .ambasadori-h2-big {
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ambasadori-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

.ambasadori-section.ambasadori-full-width {
    display: block;
}

.ambasadori-section-num {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    display: inline-block;
    color: #fff;
}

.ambasadori-divider-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ambasadori-divider-line {
    flex-grow: 1;
    border: none;
    border-top: 2px solid currentColor;
    opacity: 0.15;
}

.ambasadori-text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
    color: #fff;
}

/* --- STYLY SPECIFICKÉ PRO PROFIL --- */
.ambasadori-profile-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ambasadori-profile-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.ambasadori-bio-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ambasadori-bio-list li {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.ambasadori-bio-list strong {
    color: #fff;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

/* --- SOCIÁLNÍ SÍTĚ --- */
.ambasadori-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.ambasadori-social-link {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-flex;
}

.ambasadori-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.ambasadori-social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- KONTINUÁLNÍ OBSAH --- */
.ambasadori-stacked-wrapper {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-top: 40px;
}

.ambasadori-content-block {
    color: rgba(255,255,255,0.8);
}

.ambasadori-clean-heading {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ambasadori-content-block p {
    line-height: 1.8;
    margin: 0 0 15px 0;
    display: block;
}

.ambasadori-content-block strong {
    color: #fff;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 10px;
}

/* --- RESPONZIVITA (MOBIL) --- */
@media (max-width: 768px) {
    .ambasadori-profile-gallery {
        grid-template-columns: 1fr;
    }
    
    .ambasadori-stacked-wrapper {
        gap: 50px;
    }
}