﻿.placeholder {
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    padding: 15px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Kariyer kutularında placeholder için özel stiller */
.last-box.placeholder {
    min-height: 570px;
    border-radius: 10px;
}

.b-box.placeholder {
    min-height: 275px;
    border-radius: 10px;
}

.s-box.placeholder {
    min-height: 275px;
    border-radius: 10px;
}

.placeholder .texts {
    position: relative;
    color: #333;
    padding: 20px;
    text-align: left;
}

    .placeholder .texts h3,
    .placeholder .texts h5 {
        color: #212529;
        font-weight: 600;
    }

    .placeholder .texts p {
        color: #666;
    }

/* İş ilanları için özel stiller */
.job-listings {
    margin-top: 30px;
}

.job-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .job-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }

    .job-item h5 {
        color: #333;
        font-weight: 600;
        margin-bottom: 15px;
    }

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

    .job-details span {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #666;
    }

    .job-details i {
        color: #ff0000;
    }

.job-item p {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
}

.job-item .btn-primary {
    background-color: #1f1f1f;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .job-item .btn-primary:hover {
        background-color: #d40000;
        transform: translateY(-2px);
    }

/* Hikayeler için özel stiller */
.item-box.placeholder {
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 10px;
    height: auto;
    min-height: 250px;
    margin-bottom: 15px;
}

    .item-box.placeholder .texts {
        padding: 20px;
    }

    .item-box.placeholder .items {
        margin: 10px 0;
    }

        .item-box.placeholder .items p {
            margin: 0 10px 0 0;
        }

.no-jobs-message {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #666;
}

/* Blog yazıları devamı için stil */
.career-more-blogs {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

    .career-more-blogs a {
        width: calc(25% - 1rem);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        background-color: white;
    }

        .career-more-blogs a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        .career-more-blogs a .image {
            height: 160px;
            overflow: hidden;
        }

            .career-more-blogs a .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

        .career-more-blogs a:hover .image img {
            transform: scale(1.1);
        }

        .career-more-blogs a .texts {
            padding: 15px;
        }

            .career-more-blogs a .texts h5 {
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 8px;
                color: #333;
                height: 40px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .career-more-blogs a .texts p {
                font-size: 12px;
                color: #666;
                margin: 0;
                height: 60px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }

@media (max-width: 992px) {
    .career-more-blogs a {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .career-more-blogs a {
        width: 100%;
    }
}
