.single-post {
    color: inherit;
    text-decoration: none !important;
}
.single-post {
    position: relative;
}
.single-post::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 40px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='28' viewBox='0 0 40 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14h28m-6-7l7 7-7 7' stroke='%23E95C20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center; /* Ustawienie tła na prawą stronę */
    transition: background-image 0.1s linear;
}

.single-post:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 7l7 7-7 7' stroke='%23E95C20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-position: right center; /* Ustawienie tła na prawą stronę */
}

.single-post:hover .content::before {
    background-color: #e95c20 !important;
    
}

.single-post:hover {
    color: #e95c20;
}





.single-post .img-wrap {
    background-color: #f2f2f2;
}
.single-post .img-wrap img {
    object-fit: cover;
    width: 100%;
    height: 280px;
    outline: 2px solid #e95c20;
}
.single-post h2 {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.single-post .content {
    position: relative;
    padding: 0 10px 30px 20px;
    margin-top: 20px;
}
.single-post .description {
    text-align: justify;
    text-justify: inter-word;
}
.single-post .content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 5px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

/* Pełna przezroczystość dla 1, 5, 9, ... (czyli kolumny 1, 5, 9, …) */
.posts-container > .col:nth-child(4n+1) .single-post .content::before,
.posts-container > .col:nth-child(4n+4) .single-post .content::before {
background-color: rgba(21, 35, 50, 1);
}

/* Mniejsza przezroczystość dla 2, 6, 10, ... (czyli kolumny 2, 6, 10, …) */
.posts-container > .col:nth-child(4n+2) .single-post .content::before,
.posts-container > .col:nth-child(4n+3) .single-post .content::before {
background-color: rgba(21, 35, 50, 0.2);
}