.saints-list {

}

.saints-item-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.25rem;
    align-items: start;
}

.saints-item-grid > div:nth-child(1) {
    max-width: 350px;
}

.saints-item-grid > div:nth-child(1) img {
    margin-right: 0;
}

/* ── Главная икона: классическое оформление ── */
.saints-item-grid-icon {
    display: block;
    text-decoration: none !important;
    position: relative;
}

.saints-item-grid-icon .image-picture {
    display: block;
    border: 3px solid #b8922a;
    box-shadow:
        0 0 0 1px #7a5c14,
        5px 8px 22px rgba(70, 42, 8, 0.40);
    background: #2b1d0e;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.saints-item-grid-icon:hover .image-picture {
    border-color: #d4a83a;
    box-shadow:
        0 0 0 1px #a07820,
        5px 8px 28px rgba(70, 42, 8, 0.55);
}

.saints-item-grid-icon .image-img {
    display: block;
    opacity: 0.96;
    transition: opacity 0.25s ease;
}

.saints-item-grid-icon:hover .image-img {
    opacity: 1;
}

/* Подпись под иконой */
.saints-item-grid-icon > div {
    font-size: 0.78em;
    color: #7a6040;
    text-decoration: none;
    padding-top: 5px;
    border-top: 1px solid #c8a84b;
    margin-top: 3px;
    line-height: 1.4;
}

[data-theme="dark"] .saints-item-grid-icon .image-picture {
    border-color: #8a6820;
    box-shadow:
        0 0 0 1px #5a4010,
        5px 8px 22px rgba(0, 0, 0, 0.60);
}

[data-theme="dark"] .saints-item-grid-icon > div {
    color: #9a8060;
    border-top-color: #7a5c2a;
}

.saints-show-more {
    font-style: italic;
}

.saints-show-more > a {
    color: #888;
}

[data-theme="dark"] .saints-show-more > a {
    color: #606060;
}
[data-theme="dark"] .zhitia-list-span {
    color: #909090;
}

.zhitia-list-span {
    font-size: 0.85em;
}


