/**
 * eLfilms.cz - Styly detail stránky slavné ženy
 *
 * @package    eLfilms
 * @subpackage Frontend
 * @file       css/slavna-zena.css
 * @version    2.5 - foto ex-partnerek vpravo (konzistentní s partner boxem)
 * @datum      Duben 2026
 * @author     eLfilms Team
 * @copyright  2009-2026 eLfilms.cz
 *
 * STYLUJE:
 * - Karta osoby (foto přesahující přes horní okraj, jméno, data, sociální sítě)
 * - Partner box (mimo kartu, text vlevo, foto vpravo)
 * - Ex-partnerky box (text vlevo, foto vpravo - stejný layout jako partner box)
 * - Životopis (vlastní box vpravo od karty, stejně vysoký jako levý sloupec)
 * - Filmografie (rok NAD posterem, horizontální scroll)
 * - Ocenění + Zajímavosti (side by side)
 * - Slider výroků (3 karty)
 * - Podobné ženy / Další představitelky (horizontální scroll)
 *
 * POUŽÍVÁ:
 * - slavna-zena.php
 *
 * DESIGN:
 * - Barvy: tmavě modrá (#0d1b2a, #0b334f–#1a4f72), zlatá (#EEB500)
 * - Max šířka obsahu: 1200px
 * - Font: Segoe UI, Arial, sans-serif (BEZ patkového písma!)
 *
 * NOTE:
 * - Responsive styly jsou v slavna-zena-responsive.css
 */

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* FONT FIX – bez patkového písma na celé stránce */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ============================================
   SKIP TO CONTENT
   ============================================ */

.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    background: #EEB500;
    color: #0b334f;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.skip-to-content:focus {
    left: 10px;
    top: 10px;
}

/* ============================================
   HLAVNÍ LAYOUT
   ============================================ */

.sz-main {
    background: linear-gradient(180deg, #0d1b2a 0%, #0b334f 100%);
    min-height: 100vh;
    padding: 30px 0 60px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
}

.sz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.sz-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.sz-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.sz-breadcrumb a:hover {
    color: #EEB500;
}

.sz-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.85);
}

.sz-bc-sep {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   HORNÍ SEKCE: LEVÝ SLOUPEC + ŽIVOTOPIS
   ============================================ */

.sz-top-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
    padding-top: 80px;
}

/* ── LEVÝ SLOUPEC ── */

.sz-left-col {
    flex: 0 0 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── KARTA OSOBY ── */

.sz-card {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.25);
    border-radius: 16px;
    padding-top: 90px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Rainbow badge */

.sz-rainbow-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 22px;
    line-height: 1;
}

/* Foto – přesahuje přes horní okraj karty */

.sz-photo-wrap {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.sz-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(100, 160, 210, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
    display: block;
}

.sz-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(14, 58, 86, 0.95);
    border: 4px solid rgba(100, 160, 210, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.25);
}

/* Jméno */

.sz-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* Profese – zlatá, verzálky */

.sz-profession {
    font-size: 12px;
    font-weight: 700;
    color: #EEB500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
}

/* Oddělovač */

.sz-divider {
    width: 100%;
    align-self: stretch;
    height: 1px;
    background: rgba(100, 160, 210, 0.2);
    margin: 4px 0;
    flex-shrink: 0;
}

/* Info řádky */

.sz-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
}

.sz-info-icon {
    color: #EEB500;
    flex-shrink: 0;
    font-size: 13px;
}

.sz-death-row {
    color: rgba(255, 255, 255, 0.5);
}

.sz-age {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: 4px;
}

.sz-flag-emoji {
    font-size: 16px;
    line-height: 1;
}

.sz-flag-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Sociální sítě */

.sz-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.sz-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(100, 160, 210, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    color: rgba(180, 50, 50, 0.7);
}

.sz-social-btn:hover {
    background: rgba(238, 181, 0, 0.18);
    color: #EEB500;
    border-color: rgba(238, 181, 0, 0.4);
}

.sz-social-btn.active {
    color: #EEB500;
    border-color: rgba(238, 181, 0, 0.35);
    background: rgba(238, 181, 0, 0.08);
}

/* ── PARTNER BOX ── */

.sz-partner-box {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.25);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sz-partner-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.sz-partner-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #EEB500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sz-partner-link {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.sz-partner-link:hover {
    color: #EEB500;
}

.sz-partner-arrow {
    color: #EEB500;
    font-size: 12px;
    flex-shrink: 0;
}

.sz-partner-photo-wrap {
    flex-shrink: 0;
}

.sz-partner-photo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(238, 181, 0, 0.4);
    display: block;
}

.sz-partner-photo-placeholder {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(100, 160, 210, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.25);
}

/* ── EX-PARTNERKY BOX ── */

.sz-ex-box {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.25);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sz-ex-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #EEB500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sz-ex-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sz-ex-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sz-ex-photo-wrap {
    flex-shrink: 0;
}

.sz-ex-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(100, 160, 210, 0.3);
    display: block;
}

.sz-ex-photo-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(100, 160, 210, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.25);
}

.sz-ex-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.sz-ex-link:hover {
    color: #EEB500;
}

/* ── PRAVÝ SLOUPEC ── */

.sz-right-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Bio text */
.sz-bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    flex: 1;
}

.sz-bio-text p {
    margin-bottom: 14px;
}

.sz-bio-text p:last-child {
    margin-bottom: 0;
}

.sz-empty-bio {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Motto quote */
.sz-motto-quote {
    border-left: 3px solid #EEB500;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 6px 6px 0;
    margin: 16px 20px 20px 20px;
}

.sz-motto-text {
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.sz-motto-text::before {
    content: '\201E';
    color: #EEB500;
    font-size: 20px;
    font-style: normal;
    margin-right: 2px;
    vertical-align: -3px;
}

.sz-motto-text::after {
    content: '\201C';
    color: #EEB500;
    font-size: 20px;
    font-style: normal;
    margin-left: 2px;
    vertical-align: -3px;
}

.sz-motto-zdroj {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* Společný styl sekcí */
.sz-section {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.2);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0;
}

/* Nadpis sekce */
.sz-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #EEB500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: rgba(255, 255, 255, 0.06);
    padding: 13px 20px;
    margin: 0;
    border-bottom: 1px solid rgba(100, 160, 210, 0.15);
}

.sz-section-title i {
    font-size: 14px;
    opacity: 0.85;
}

/* Padding pro obsah sekcí */
.sz-filmografie .sz-filmografie-scroll,
.sz-vyroky-section .sz-slider-wrap,
.sz-vyroky-section .sz-slider-dots {
    padding: 20px;
}

/* ============================================
   FILMOGRAFIE
   ============================================ */

.sz-filmografie-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(238, 181, 0, 0.4) rgba(255, 255, 255, 0.05);
}

.sz-filmografie-scroll::-webkit-scrollbar {
    height: 5px;
}

.sz-filmografie-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sz-filmografie-scroll::-webkit-scrollbar-thumb {
    background: rgba(238, 181, 0, 0.4);
    border-radius: 3px;
}

.sz-filmografie-card {
    flex: 0 0 120px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sz-filmografie-card:hover {
    transform: translateY(-4px);
}

.sz-filmografie-rok {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 6px;
    display: block;
    min-height: 16px;
}

.sz-poster-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    width: 100%;
}

.sz-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sz-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.2);
}

.sz-typ-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(13, 27, 42, 0.85);
    color: #EEB500;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.sz-filmografie-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    width: 100%;
}

.sz-filmografie-nazev {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sz-filmografie-postava {
    font-size: 11px;
    color: #EEB500;
    font-style: normal;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   OCENĚNÍ + ZAJÍMAVOSTI (side by side grid)
   ============================================ */

.sz-oceneni-zajimavosti-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.sz-oceneni-block {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.2);
    border-radius: 14px;
    overflow: hidden;
}

.sz-zajimavosti-block {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.2);
    border-radius: 14px;
    overflow: hidden;
}

.sz-oceneni-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.sz-oceneni-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.sz-oceneni-rok {
    font-size: 13px;
    font-weight: 700;
    color: #EEB500;
    flex-shrink: 0;
    min-width: 38px;
}

.sz-oceneni-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sz-oceneni-nazev {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.sz-oceneni-popis {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.sz-oceneni-empty {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    text-align: center;
}

.sz-oceneni-empty i {
    color: rgba(238, 181, 0, 0.4);
    font-size: 32px;
}

/* ── ZAJÍMAVOSTI OBSAH ── */

.sz-zajimavosti-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding: 20px;
}

.sz-zajimavosti-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sz-zajimavosti-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.65;
}

.sz-zajimavosti-content li::before {
    content: '•';
    color: #EEB500;
    font-size: 22px;
    line-height: 1.2;
    flex-shrink: 0;
}

.sz-zajimavosti-content p {
    margin-bottom: 8px;
}

/* ============================================
   VÝROKY SLIDER
   ============================================ */

.sz-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.sz-slider-viewport {
    flex: 1;
    overflow: hidden;
}

.sz-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.sz-vyrok-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
}

.sz-vyrok-inner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 160, 210, 0.2);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    min-height: 140px;
    position: relative;
}

.sz-vyrok-icon {
    display: none;
}

.sz-vyrok-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
    margin-bottom: 12px;
    padding-right: 0;
}

.sz-vyrok-text::before {
    content: '\201E';
    color: rgba(255, 255, 255, 0.65);
    font-size: 22px;
    font-weight: 700;
    margin-right: 3px;
    vertical-align: -4px;
    line-height: 0;
}

.sz-vyrok-text::after {
    content: '\201C';
    color: rgba(255, 255, 255, 0.65);
    font-size: 22px;
    font-weight: 700;
    margin-left: 3px;
    vertical-align: -4px;
    line-height: 0;
}

.sz-vyrok-zdroj {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.sz-slider-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(100, 160, 210, 0.3);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.sz-slider-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.sz-slider-btn:disabled {
    opacity: 0.25;
    cursor: default;
    transform: none;
}

.sz-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px 14px 20px;
    margin-top: 0;
}

.sz-dot {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    max-width: 8px;
    max-height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    display: block;
}

.sz-dot-active {
    background: #EEB500;
}

/* ============================================
   PODOBNÉ ŽENY / DALŠÍ PŘEDSTAVITELKY
   ============================================ */

.sz-podobne-section {
    overflow: visible !important;
}

.sz-podobne-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 55px 20px 20px 20px;
    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(238, 181, 0, 0.4) rgba(255, 255, 255, 0.05);
}

.sz-podobne-scroll::-webkit-scrollbar {
    height: 4px;
}

.sz-podobne-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sz-podobne-scroll::-webkit-scrollbar-thumb {
    background: rgba(238, 181, 0, 0.4);
    border-radius: 3px;
}

.sz-podobna-card {
    flex: 0 0 130px;
    min-width: 130px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 48px;
}

.sz-podobna-card:hover {
    transform: translateY(-4px);
}

.sz-podobna-photo-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 90px;
    height: 90px;
}

.sz-podobna-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(100, 160, 210, 0.4);
    display: block;
    transition: border-color 0.2s;
}

.sz-podobna-card:hover .sz-podobna-photo {
    border-color: rgba(238, 181, 0, 0.6);
}

.sz-podobna-photo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(14, 58, 86, 0.95);
    border: 3px solid rgba(100, 160, 210, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.2);
}

.sz-podobna-inner {
    background: linear-gradient(145deg, #0e3a56, #0b2a42);
    border: 1px solid rgba(100, 160, 210, 0.25);
    border-radius: 12px;
    width: 100%;
    padding: 50px 10px 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s;
    position: relative;
    overflow: visible;
}

.sz-podobna-card:hover .sz-podobna-inner {
    border-color: rgba(238, 181, 0, 0.4);
}

.sz-podobna-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
}

.sz-podobna-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    font-style: normal;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sz-podobna-prof {
    font-size: 9px;
    font-weight: 500;
    color: #EEB500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: normal;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sz-podobna-flag {
    font-size: 16px;
    line-height: 1;
    text-align: center;
    margin-top: 2px;
}

/* ============================================
   DUHOVÁ VLAJKA V KARTĚ PODOBNÉ ŽENY
   ============================================ */

.sz-podobna-rainbow-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 20px;
    line-height: 1;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}