/* Yetenek Yönetimi sayfası (CI3 public_page/pages/talent_management.php içindeki <style>).
   layouts/job_posting.blade.php css/styles/public/talent_management.css dosyasını otomatik bağlar.
   padding-left/border-left -> mantıksal padding-inline-start/border-inline-start. */
.talent-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    height: 360px;
}

.talent-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.talent-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 46, 53, 0.9) 0%, rgba(27, 46, 53, 0.5) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.talent-hero .hero-text {
    max-width: 550px;
}

.talent-hero .hero-text h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.talent-hero .hero-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.talent-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.talent-content .talent-section {
    margin-bottom: 32px;
}

.talent-content .talent-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b2e35;
    margin-bottom: 12px;
    padding-inline-start: 16px;
    border-inline-start: 3px solid #2f6f83;
}

.talent-content .talent-section p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.85;
    text-align: justify;
    margin: 0;
}

@media (max-width: 767px) {
    .talent-hero {
        height: 280px;
    }

    .talent-hero .hero-overlay {
        padding: 24px;
        background: linear-gradient(to top, rgba(27, 46, 53, 0.9) 0%, rgba(27, 46, 53, 0.4) 100%);
        align-items: flex-end;
    }

    .talent-hero .hero-text h2 {
        font-size: 1.4rem;
    }

    .talent-hero .hero-text p {
        font-size: 0.9rem;
    }

    .talent-content {
        padding: 0 10px 30px;
    }
}
