.datev-card {
    border: 1px solid #e5e7eb;
    border-left: 5px solid #d96c06;
    border-radius: 8px;
    padding: 24px;
    background-color: #fffaf5;
    box-shadow: 0 4px 6px -1px rgba(217, 108, 6, 0.08), 0 2px 4px -1px rgba(217, 108, 6, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.datev-card:hover {
    box-shadow: 0 6px 12px -2px rgba(217, 108, 6, 0.12), 0 3px 6px -2px rgba(217, 108, 6, 0.08);
}

.datev-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.datev-card-icon {
    font-size: 1.35rem;
    color: #d96c06;
    display: inline-flex;
    align-items: center;
}
.datev-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: #d96c06;
}

.datev-card-badge {
    background-color: #d96c06;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.datev-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.datev-card-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.datev-card-desc p {
    margin-bottom: 12px;
}
.datev-card-desc p:last-child {
    margin-bottom: 0;
}

.datev-card-btn-wrapper {
    display: flex;
}

.datev-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.datev-card-btn:hover {
    opacity: 0.9;
}
