.featured-talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
}

/* Reset anchor styles for card link */
.talent-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    height: 100%;
}

.talent-card {
    background-color: #15364D;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.talent-card-link:hover .talent-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.talent-card-link:hover .talent-card-content {
    text-decoration: none;
}

.talent-card-content {
    padding: 30px;
    flex-grow: 1;
}

.talent-card-title {
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.talent-card-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.talent-card-footer {
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border: 2px solid #15364D;
}

.talent-card-email {
    display: block;
    text-align: center;
    color: #15364D;
    font-weight: 600;
}

/* Tablet: 2 columns */
@media screen and (max-width: 1024px) {
    .featured-talent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: 1 column */
@media screen and (max-width: 768px) {
    .featured-talent-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


.talent-card-description li {
    margin-bottom: 10px;
}

.talent-card-description li:last-child {
    margin-bottom: 0;
}