.taurus-tc-pro-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.taurus-tc-pro-img-wrapper {
    width: 100%;
    overflow: hidden;
    /* Aspect ratio fallback if object-fit height isn't enough */
    aspect-ratio: 4/3;
}

.taurus-tc-pro-img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.taurus-tc-pro-card:hover .taurus-tc-pro-img {
    transform: scale(1.05);
}

.taurus-tc-pro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.taurus-tc-pro-role {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.taurus-tc-pro-name {
    font-family: 'Playfair Display', serif;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-weight: 700;
}

.taurus-tc-pro-bio {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin-bottom: 24px;
}

.taurus-tc-pro-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.taurus-tc-pro-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.taurus-tc-pro-social {
    display: flex;
    gap: 12px;
}

.taurus-tc-pro-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.taurus-tc-pro-social i,
.taurus-tc-pro-social svg {
    font-size: 16px;
    width: 1em;
    height: 1em;
    transition: all 0.3s ease;
}