/**
 * İş İlanları Kartları - Sade ve Minimal Tasarım
 * Yapay zeka görünümünü kaldırır, sade ve temiz bir tasarım sağlar
 */

/* Ana Container */
.elementor-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* İş İlanı Kartı */
.elementor-post {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s ease;
}

.elementor-post:hover {
    border-color: #104cba;
}

/* Kart İçeriği */
.elementor-post__card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Resim Bölümü */
.elementor-post__thumbnail {
    height: 180px;
    overflow: hidden;
}

.elementor-post__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Metin Bölümü */
.elementor-post__text {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Başlık */
.elementor-post__title {
    margin-bottom: 12px;
}

.elementor-post__title a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.elementor-post__title a:hover {
    color: #104cba;
}

/* Meta Bilgiler - Çerçevesiz */
.elementor-post__meta-data {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.elementor-post__meta-data span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.elementor-post__meta-data i {
    width: 14px;
    margin-right: 6px;
    color: #104cba;
    font-size: 12px;
}

/* Açıklama */
.elementor-post__excerpt {
    margin-bottom: 16px;
    flex: 1;
}

.elementor-post__excerpt p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Buton Bölümü */
.elementor-post__read-more {
    margin-top: auto;
}

.elementor-button {
    background: #104cba;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.elementor-button:hover {
    background: #0d3d94;
    color: white;
    text-decoration: none;
}

/* İş İlanı Bulunamadı Mesajı */
.no-jobs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-jobs-message i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
    display: block;
}

.no-jobs-message h3 {
    color: #666;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.no-jobs-message p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Loading State */
.jobs-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #666;
}

.jobs-loading i {
    font-size: 20px;
    margin-right: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .elementor-posts-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 15px 0;
    }
    
    .elementor-post__text {
        padding: 16px;
    }
    
    .elementor-post__title a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .elementor-posts-container {
        gap: 12px;
    }
    
    .elementor-post__thumbnail {
        height: 160px;
    }
    
    .elementor-post__text {
        padding: 14px;
    }
    
    .elementor-post__title a {
        font-size: 15px;
    }
    
    .elementor-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}
