.pathiseis-list {
    margin-bottom: 100px;
}
.pathiseis-index {
    background: #f5f7f4;
    border-radius: 20px;
    padding: 40px 50px 50px;
    width: 100%;
    box-sizing: border-box;
}
.pathiseis-index__title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
}
.pathiseis-alphabet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddddd8;
    margin-bottom: 36px;
}
.pathiseis-alphabet__letters {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}
.pathiseis-letter {
    min-width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: 16px;
    font-family: inherit;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.pathiseis-letter.has-posts:hover {
    background: rgba(85, 116, 71, 0.12);
    color: #2c2c2c;
}

.pathiseis-letter.active {
    background: var(--primary-color);
    color: #fff;
}

.pathiseis-letter.no-posts {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

.pathiseis-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    color: var(--primary-color);
    cursor: pointer;
    white-space: nowrap;
    padding: 0;
    font-weight: 500;
    transition: color 0.2s;
}
.pathiseis-view-all:hover,
.pathiseis-view-all.active {
    color: #2c2c2c;
}
.pathiseis-group{
    position: relative;
    padding: 40px 0 0 70px;
    margin-bottom: 50px;
}
.pathiseis-group:last-child{ margin-bottom: 0; }
.pathiseis-group__letter {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}
.ntfnd{
    width: 100%;
    max-width: 800px;
    margin:80px auto 0 auto;
}
.ntfndc{
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px 40px 40px 130px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px 2px #f1f1f1;
}
.ntfndc > img{
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 50px;
}
.ntfndc h2{
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 12px 0;
    padding: 0;
}
.ntfndc p{
    color:#868685;
    font-size: 15px;
    line-height: 1.36em;
    padding: 0;
    margin: 0;
}
.ntfndc .btn a{
    background: var(--primary-color);
    color: #fff;
    padding: 14px 26px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.pathiseis-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
}

.pathisi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e0;
    text-decoration: none;
    color: #2c2c2c;
    transition: color 0.2s;
}

.pathisi-item:hover {
    color: var(--primary-color);
}

.pathisi-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathisi-item__icon img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pathisi-item__icon--empty {
    background: #ebebeb;
    border-radius: 8px;
}

.pathisi-item__title {
    flex: 1;
    font-size: 15px;
    line-height: 1.3;
}

.pathisi-item__arrow {
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


@media (max-width: 900px) {
    .pathiseis-index {
        padding: 28px 24px 36px;
    }

    .pathiseis-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .pathiseis-posts-grid {
        grid-template-columns: 1fr;
    }

    .pathiseis-alphabet__letters {
        gap: 1px;
    }

    .pathiseis-letter {
        font-size: 14px;
        min-width: 28px;
        height: 28px;
    }
}
