/* Alt sayfa kutulari (PageView #altSayfalar .alt-kutu) - kart gorunumu, 2026-09-25 */
#altSayfalar .alt-kutu {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    box-shadow: none;
    text-align: center;
}

#altSayfalar .alt-kutu > a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e9f0;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(8, 45, 73, .06), 0 10px 26px -12px rgba(8, 45, 73, .22);
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

#altSayfalar .alt-kutu > a:hover,
#altSayfalar .alt-kutu > a:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(7, 159, 197, .45);
    box-shadow: 0 2px 4px rgba(8, 45, 73, .08), 0 18px 38px -14px rgba(8, 45, 73, .35);
}

#altSayfalar .alt-kutu > a:focus-visible {
    outline: 3px solid rgba(7, 159, 197, .55);
    outline-offset: 3px;
}

#altSayfalar .alt-kutu > a > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 555 / 325;
    object-fit: cover;
    margin: 0;
    border-bottom: 1px solid #edf1f5;
    transition: transform .5s ease;
}

#altSayfalar .alt-kutu > a:hover > img {
    transform: scale(1.04);
}

#altSayfalar .alt-kutu > a > .kutu-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    padding: 16px 18px 24px;
    background: #fff;
    color: #082d49 !important;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    transition: color .28s ease;
}

#altSayfalar .alt-kutu > a > .kutu-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: #079fc5;
    transform: translateX(-50%);
    transition: width .28s ease;
}

#altSayfalar .alt-kutu > a:hover > .kutu-title {
    color: #0788bd !important;
}

#altSayfalar .alt-kutu > a:hover > .kutu-title::after {
    width: 56px;
}

@media (prefers-reduced-motion: reduce) {
    #altSayfalar .alt-kutu > a,
    #altSayfalar .alt-kutu > a > img {
        transition: none;
    }
    #altSayfalar .alt-kutu > a:hover,
    #altSayfalar .alt-kutu > a:hover > img {
        transform: none;
    }
}
