.sube-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 .6rem 1.4rem rgba(15, 23, 42, 0.09);
    background: #ffffff;
    height: 260px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    isolation: isolate;
}

    .sube-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 1.2rem 2.2rem rgba(15, 23, 42, 0.16);
    }

/* Harita alanÄ± */
.sube-map-only {
    flex: 1;
    background: #f8fafc;
}

    .sube-map-only iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        pointer-events: none;
    }

/* Koordinat yoksa */
.sube-map-fallback {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sube-map-fallback i {
        font-size: 4.5rem;
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 2px 10px rgba(0,0,0,.25);
    }

/* Badge */
.sube-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: .35rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .5px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    backdrop-filter: blur(6px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* Alt footer */
.sube-card-footer {
    padding: .6rem .75rem;
    font-size: .9rem;
    font-weight: 700;
    color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    line-height: 1.3;
}

.sube-route-link {
    color: #0d6efd;
    font-size: .95rem;
    z-index: 6; /* overlay Ã¼stÃ¼nde */
}

    .sube-route-link:hover {
        color: #084298;
    }

/* KartÄ±n tamamÄ±nÄ± tÄ±klanÄ±r yapan katman */
.sube-card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: 1.25rem;
    text-indent: -9999px;
}

.page-title-wrap {
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.page-title-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

.page-title-text {
    display: flex;
    flex-direction: column;
}

    .page-title-text h1 {
        margin: 0;
        font-size: 1.65rem;
        font-weight: 800;
        letter-spacing: .5px;
        color: #0f172a;
    }

    .page-title-text span {
        font-size: .85rem;
        color: #64748b;
        font-weight: 500;
    }

@media (max-width: 576px) {
    .page-title-text h1 {
        font-size: 1.35rem;
    }

    .page-title-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
