/* Related Talents Styles */
.related-talents-wrapper {
    margin-top: 4rem;
    padding: 2rem 0;
}

.related-talents-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.related-talents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-talent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #F9F8F6;
}

.related-talent-image {
    width: 100%;
    margin-bottom: 1rem;
}

.related-talent-image img {
    width: 60%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.related-talent-title {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.related-talent-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    background-color: #F40058;
    color: #f1eaec !important; /* Added !important to ensure no theme override */
    text-decoration: none !important; /* Added !important to ensure no theme override */
    border-radius: 5px;
    transition: background-color 0.3s linear;
}

.related-talent-cta:hover {
    background-color: #a0063f;
    color:#f1eaec !important; /* Added !important to ensure no theme override */
}

/* Responsive Design */
@media (max-width: 768px) {
    .related-talents-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}
