/* ── Stigma: Είπαν στον ΣΤΙΓΜΑ widget ──────────────────────────────────── */

/* Wrapper section — αντικαθιστά το γενικό sp-sidebar-widget */
.stigma-eipan-module {
    background: var(--sc-bg, #f5f3ef);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Σκούρος header όπως στο demo */
.stigma-eipan-module .stigma-eipan__header {
    background: #111110;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stigma-eipan-module .stigma-eipan__header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sc-orange, #f07c00);
    flex-shrink: 0;
}
.stigma-eipan-module .stigma-eipan__header-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* Body padding */
.stigma-eipan {
    padding: 14px;
}

/* Grid 3 στήλες */
.stigma-eipan__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

/* Card */
.stigma-eipan__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    transition: transform .18s ease, box-shadow .18s ease;
}
.stigma-eipan__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,.13);
}

/* Image / placeholder */
.stigma-eipan__img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #e8e5df;
}
.stigma-eipan__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.stigma-eipan__card:hover .stigma-eipan__img {
    transform: scale(1.05);
}
.stigma-eipan__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e5df, #d4d0c8);
    font-size: 15px;
    font-weight: 700;
    color: var(--sc-orange, #f07c00);
    letter-spacing: -0.5px;
}

/* Card info */
.stigma-eipan__card-info {
    padding: 6px 7px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.stigma-eipan__card-name {
    font-size: 10px;
    font-weight: 700;
    color: #111110;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.stigma-eipan__card-count {
    font-size: 9px;
    color: var(--sc-orange, #f07c00);
    font-weight: 600;
}
.stigma-eipan__card-count::after {
    content: ' συνεντ.';
    color: #aaa;
    font-weight: 400;
}

/* "Επίσης" divider */
.stigma-eipan__more-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #bbb;
    border-top: 1px solid #e4e1da;
    padding-top: 10px;
    margin-bottom: 8px;
}

/* List */
.stigma-eipan__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.stigma-eipan__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ece9e2;
    gap: 6px;
}
.stigma-eipan__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stigma-eipan__list a {
    font-size: 12px;
    font-weight: 500;
    color: #111110;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s;
}
.stigma-eipan__list a:hover {
    color: var(--sc-orange, #f07c00);
}
.stigma-eipan__list-count {
    font-size: 10px;
    font-weight: 600;
    color: #bbb;
    flex-shrink: 0;
}
