/* Creator Targeting Component Styles */

.creator-targeting-section {
    padding: 100px 0;
    background: #ffffff;
}

.creator-targeting-section .section-header {
    margin-bottom: 60px;
}

.creator-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;

    @media (max-width: 767px) {
        padding: 0px;
    }
}

.creator-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 300px;
    border-radius: 20px;
    padding: 40px;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
}

.card-title {
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommended-star {
    font-size: 1.4rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.5;
    color: #475569;
}

.detail-item {
    display: block;
}

.detail-item strong {
    color: #1e293b;
    font-weight: 800;
    margin-right: 4px;
}

/* Themes */
.theme-purple {
    background: #f5f3ff;
    border-color: #e9e5ff;
}

.theme-purple .card-title {
    color: #1e1b4b;
}

.theme-green {
    background: #eafcf1;
    border-color: #22c55e;
}

.theme-green .card-title {
    color: #064e3b;
}

.theme-blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.theme-blue .card-title {
    color: #1e3a8a;
}

.theme-orange {
    background: #fff7ed;
    border-color: #ffcc91;
}

.theme-orange .card-title {
    color: #7c2d12;
}

@media (max-width: 991px) {
    .creator-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 480px) {
    .creator-card {
        padding: 30px 24px;
    }

    .card-title {
        font-size: 1.4rem;
    }
}