/* Popularne Posty */

.popular-posts-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: block;
    border-top: 1px #CBCBCB solid;    
    padding-top: 10px;
}

.popular-post .post-thumbnail {
    margin-right: 20px;
}

.popular-post .post-info {
    flex-grow: 1;
}

.post-title, .post-title a {
    color: var(--e-global-color-secondary);
    font-family: "HelveticaNeueFonts", Sans-serif;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksymalnie 2 linijki */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date {
    font-size: 12px;
    color: #999;
}
.post-content-category {
    margin-top: 5px;
    margin-bottom: 10px;
}
.post-content-category a {
    background: var(--e-global-color-primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
}
.post-meta {
    font-size: 12px;
    padding-top: 10px;
}
.post-meta i, .post-meta a{
    color: var(--color1);
}
span.post-date {
    color: #444443;
}

/* Kategoria Autor */

.kategoria-autor {
    margin: 20px 0;
}

.kategoria-autor img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.autor-info {
    display: block;
}
.autor-image {
    float: left;
    width: 18%;
    display: flex;
    align-items: center;
    align-content: center;
}

.autor-details {
    float: right;
    width: 80%;
}

@media (max-width: 768px) {
    .autor-image {
        float: inherit;
        width: 100%;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    .autor-details {
        float: inherit;
        width: 100%;
        margin-top: 25px;
    }
} 

.autor-details h4 {
    color: var(--e-global-color-secondary);
    font-family: "HelveticaNeueFonts", Sans-serif;
    font-size: 18px;
    font-weight: bold;
}
.autor-content-info {
    float: inline-end;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #B9B9B9; 
    border-bottom: 1px solid #B9B9B9; 
    padding: 10px 0px;
    margin-top: 30px;
    font-family: "HelveticaNeueFonts", Sans-serif;
    font-size: 16px;
    font-weight: normal
}

@media (max-width: 768px){
    .autor-content-info {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    justify-content: center;
    }
    a.profil-autor{
        text-align: center;
    }
    .social-share {
        justify-content: center !important;
    }
}

a.profil-autor {
    color: #444443;
}

a.profil-article-more {
    text-align: center;
    color: var(--color1);
}

.social-share {
    font-weight: bold;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-share a {
    border: 1px solid;
    border-radius: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    color: var(--color1);
}

.social-share a svg {
    height: 20px;
}
