.tfa-injectors-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 16px;
    font-family: "Poppins", sans-serif;
    color: #2a2a2a;
}

strong{
    font-weight: 600;
}

.tfa-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: space-between;
}

.tfa-search {
    flex: 1;
}

.tfa-search input {
    padding: 11px 14px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    width: 100%;
    min-width: 360px;
}

.tfa-filter-selects {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.tfa-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tfa-filter-button {
    cursor: pointer;
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    background: #fff;
    color: #454545;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
}

.tfa-filter-button.selected {
    background: #2f2f2f;
    color: white;
    border-color: #2f2f2f;
}

.tfa-filter-button:hover {
    border-color: #9f9f9f;
}

.tfa-injectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(490px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.tfa-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tfa-load-more-button {
    cursor: pointer;
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    background: #fff;
    color: #454545;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
}

.tfa-load-more-button:hover {
    border-color: #9f9f9f;
    background: #f6f6f6;
}

.tfa-injector-card {
    border: 1px solid #e5e3de;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.tfa-injector-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.tfa-card-header {
    background: #b4aea6;
    color: #fff;
    padding: 14px 18px 12px;
}

.tfa-card-header h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.tfa-card-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 235px;
    flex: 1;
}

.tfa-avatar {
    background: #d9d9d9;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.tfa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.tfa-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: #a7a29a;
}

.tfa-company {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.tfa-info {
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    height: 100%;
}

.tfa-info-header, .tfa-info-body{
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tfa-info-body {
    margin-top: auto;
    font-size: 1rem;
    line-height: 1.2;
}

.tfa-location {
    color: #4f4f4f;
    margin: 0;
}


.tfa-courses,
.tfa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tfa-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    border: 1px solid transparent;
}

.tfa-pill-icon{
    padding-right:6px;
}

.tfa-course-pill {
    background: #eceef2;
    color: #565d69;
    border-color: #d2d7df;
}

.tfa-type-pill {
    background: #1f1f1f;
    color: #fff;
}

.tfa-contact {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    color: #353535;
}

.tfa-contact a {
    text-decoration: none;
    word-break: break-word;
    color: rgb(178 172 163);
}

.tfa-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tfa-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .tfa-search input {
        width: 100%;
        min-width: auto;
    }

    .tfa-filter-selects {
        justify-content: flex-start;
    }

    .tfa-injectors-grid {
        grid-template-columns: 1fr;
    }

    .tfa-card-body {
        grid-template-columns: 1fr;
    }

    .tfa-avatar {
        min-height: 210px;
    }

    .tfa-injector-card {
        height: auto;
    }
}