#sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px; /* Adjust this value to control the distance from the top */
}

.sidebar-section {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.post-card {
    background: center / cover no-repeat; /* Skrócona właściwość dla tła */
    color: white; /* Ensure text is readable on dark backgrounds */
    position: relative;
    overflow: hidden;
    min-height: 250px; /* Zmieniono na min-height */
}

.card-body-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Usunięto justify-content: center; */
}

.card-body-overlay .btn {
    align-self: flex-start; /* Zmniejsza szerokość przycisku do jego zawartości */
}

.post-card .card-title a {
    color: white; /* Ensure title link is white */
}

.post-card .card-title a:hover {
    color: #f8f9fa; /* Lighter on hover */
}
