/* Hero altı — T-Soft tarzı başarı / referans bandı */
.home-story-tsoft {
    background-color: #f4f6f9;
}
.home-story-tsoft__logo-wrap {
    max-width: 100%;
    overflow: hidden;
}
.home-story-tsoft__logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    max-width: 100%;
}
@media (min-width: 480px) {
    .home-story-tsoft__logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.625rem;
    }
}
@media (min-width: 640px) {
    .home-story-tsoft__logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.home-story-tsoft__logo-cell {
    display: flex;
    min-width: 0;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid rgba(226, 232, 239, 0.95);
    background-color: #ffffff;
    padding: 0.5rem;
}
.home-story-tsoft__logo-fallback {
    display: -webkit-box;
    overflow: hidden;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.home-story-tsoft__logo-cell img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.88;
    transition: opacity 0.2s ease, filter 0.2s ease;
}
.home-story-tsoft__logo-cell:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.home-story-tsoft__figure {
    margin: 0;
    width: min(100%, 26rem);
    max-height: min(72vh, 34rem);
}
.home-story-tsoft__figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: inherit;
    object-fit: contain;
    object-position: center bottom;
}
@media (min-width: 1024px) {
    .home-story-tsoft__figure {
        width: min(100%, 28rem);
    }
}
