/* --- HERO SEKCE --- */
.finance-hero {
    height: 50vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--brand-blue);
    margin: 20px auto 0;
}

/* --- GRAFICKÉ PRVKY --- */
.main-img {
    border-radius: 24px !important;
    transition: all 0.5s ease;
}

.main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
}

.bg-light-custom {
    background-color: #f8f9fa !important;
}

.border-top-blue {
    border-top: 5px solid var(--brand-blue) !important;
}

.card-hover-effect {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
    background-color: #fff;
}

/* Centrování linky pod nadpisem */
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-primary {
    color: var(--brand-blue) !important;
}

/* --- RESPONZIVITA --- */
@media (max-width: 768px) {
    .finance-hero { height: 40vh; }
    .modern-title { font-size: 1.8rem; letter-spacing: 4px; }
}