.card {
    background-color: white;
    border-radius: 30px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.card-inner {
    border-radius: 28px; 
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.text-side { flex: 1; }

.avatar {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.menu-badge {
    background: white;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #2d86db;
    text-transform: uppercase;
    color: #2d86db;
}

.card-footer {
    padding: 20px 30px 15px 30px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    align-items: center;
}

.footer-text { font-size: 14px; color: #000; }
.footer-text strong { color: #2d86db; }

.card-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-btn-action {
    background: #2d86db;
    text-transform: unset;
    color: #ffffff;
    padding: 9px 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.card-btn-action:hover { transform: scale(1.03); color: white;}


@media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
    .card-inner { padding: 25px; }
    .content-top { gap: 6px; }
    .avatar { width: 60px; height: 60px; }
}