.blog-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-thumb {
    margin-bottom: 0;
}

.blog-thumb img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.text-content {
    flex: 1;
}

.blog-post-content .title {
    font-size: 1.6rem;
}

.blog-post-meta .list-wrap li {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
    }

    .blog-thumb img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

html {
    scroll-behavior: smooth;
}

h2 {
    scroll-margin-top: 150px;
}

.fc-outline {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f5f5f5;
    border-left: 4px solid #B936CC;
    padding-left: 1rem!important;
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    font-size: 0.95rem;
}

.fc-outline li {
    margin-bottom: 0.5em;
}

.fc-outline a {
    text-decoration: none;
    color: #B936CC!important; /* Tmavě modrá z webu */
}

.fc-outline a:hover {
    text-decoration: underline;
    color: #e25bf7!important;
}