/* ===================================================================
   TALENTPOOL – eigenes, sauberes Styling
   =================================================================== */

/* ---------- GRUNDLAYOUT ---------- */
.tp-category {
    font-size: 28px;
    margin: 50px 0 20px;
    font-weight: 600;
}

/* ---------- GRID ---------- */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* ---------- CARD-BASIS ---------- */
.tp-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* ---------- BILDER ---------- */
.tp-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* ---------- BUTTON ---------- */
.btn-primary {
    display: inline-block;
    padding: 10px 16px;
    margin-top: 10px;
    background: #003d9e;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease;
}
.btn-primary:hover {
    background: #002a6d;
}

/* ===================================================================
   KATEGORIEN – FARBCODES
   =================================================================== */

.tp-category.qa { color: #0057ff; border-left: 6px solid #0057ff; padding-left: 10px; }
.tp-category.dev { color: #00a363; border-left: 6px solid #00a363; padding-left: 10px; }
.tp-category.data { color: #d4a100; border-left: 6px solid #d4a100; padding-left: 10px; }
.tp-category.hr { color: #8a2be2; border-left: 6px solid #8a2be2; padding-left: 10px; }
.tp-category.emb { color: #d62b2b; border-left: 6px solid #d62b2b; padding-left: 10px; }

/* ===================================================================
   ICON IM CARD HEADER (Kategorie-Logo)
   =================================================================== */

.tp-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Beispiel-Icons – können ersetzt werden */
.tp-card h3.qa::before {
    content: "🧪";
}
.tp-card h3.dev::before {
    content: "💻";
}
.tp-card h3.data::before {
    content: "📊";
}
.tp-card h3.hr::before {
    content: "👥";
}
.tp-card h3.emb::before {
    content: "🔧";
}

/* =================================================================== */
