.persona-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.persona-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.persona-card .card-header {
    padding: 0;
    background: none;
    border: none;
    margin-bottom: 2rem;
}

.persona-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.persona-card .fas.fa-user-tie,
.persona-card .fas.fa-building {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3172ae;
}

.persona-list {
    margin: .5rem 0 1.75rem 0;
    flex-grow: 1;
}

.persona-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2c3e50;
}

.persona-list li:last-child {
    margin-bottom: 0;
}

.persona-list .fas.fa-check-circle {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.action-container {
    text-align: center;
}

.btn-action {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    background-color: #3172ae;
    color: white;
    border: none;
    text-align: center;
    transition: all 0.2s ease;
    border-radius: 6px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.btn-action:hover {
    background-color: #265d8f;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.create-profile-link {
    color: #3172ae;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0.85;
}

.create-profile-link:hover {
    color: #265d8f;
    text-decoration: none;
    background-color: rgba(49, 114, 174, 0.05);
    opacity: 1;
}
