/* W6G BLOG_VIEW */

.w6g-bv-list {
    position: relative;
    max-width: 100%;
}

/* Χρυσή κάθετη γραμμή, σε όλο το ύψος της λίστας, ακριβώς μετά τη στήλη ημερομηνίας */
.w6g-bv-timeline {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 78px;
    width: 2px;
    background: linear-gradient(180deg, #c9a227, rgba(201,162,39,0.15));
}

.w6g-bv-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.w6g-bv-row:last-child {
    border-bottom: none;
}

.w6g-bv-date {
    flex: 0 0 78px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

.w6g-bv-day {
    font-size: 34px;
    font-weight: 800;
    color: #c9a227;
    line-height: 1;
}

.w6g-bv-month {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    margin-top: 4px;
    white-space: nowrap;
}

.w6g-bv-views {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #c9a227;
    text-transform: uppercase;
}

.w6g-bv-body {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.w6g-bv-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #aaaaaa;
}

.w6g-bv-title {
    font-size: 18px;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.35;
}

.w6g-bv-excerpt {
    font-size: 13px;
    color: #999999;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.w6g-bv-thumb {
    flex: 0 0 160px;
    height: 110px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

@media (max-width: 782px) {
    .w6g-bv-thumb {
        flex-basis: 120px;
        height: 90px;
    }
    .w6g-bv-title {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .w6g-bv-timeline {
        display: none;
    }
    .w6g-bv-row {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }
    .w6g-bv-date {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        flex-basis: auto;
        width: 100%;
    }
    .w6g-bv-day {
        font-size: 22px;
    }
    .w6g-bv-month {
        margin-top: 0;
    }
    .w6g-bv-views {
        margin-top: 0;
        margin-left: auto;
    }
    .w6g-bv-body {
        padding-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    .w6g-bv-excerpt {
        display: none;
    }
    .w6g-bv-thumb {
        flex-basis: auto;
        width: 100%;
        height: 160px;
        margin-top: 10px;
    }
}

