/* Tetkikler List - original card design */

.tetkikler.section-space {
    background: #f8fafc;
}

.tetkikler .sec-title { margin-bottom: 36px; }

.tedkik-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tedkik-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.tedkik-card--link:hover {
    text-decoration: none;
    color: inherit;
}

.tedkik-card--link .tedkik-card__media,
.tedkik-card--link .tedkik-card__image {
    cursor: pointer;
}

.tedkik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.12);
}

.tedkik-card__media {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.tedkik-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.tedkik-card:hover .tedkik-card__image {
    transform: scale(1.04);
}

.tedkik-card__image.is-placeholder {
    object-fit: contain;
    padding: 10px;
    background: #ffffff;
}

.tedkik-card__content {
    padding: 18px 20px 22px 20px;
    position: relative;
    padding-right: 72px; /* space for corner arrow */
}

.tedkik-card__title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tedkik-card__title { color: inherit; }
.tedkik-card--link:hover .tedkik-card__title { color: var(--theme-primary-color); }

.tedkik-card__link {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}

.tedkik-card--link:hover .tedkik-card__link { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,.15); }

.tedkik-card__link i { font-size: 16px; line-height: 1; }

@media (max-width: 992px) {
    .tedkik-card__media { height: 170px; }
}

@media (max-width: 576px) {
    .tedkik-card__media { height: 150px; }
}


