.esf-grid {
    display: grid;
    width: 100%;
}
.esf-card {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
}
.esf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.esf-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.esf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.esf-icon svg {
    display: block;
}
.esf-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 9999px;
    border: 1px solid;
    background-color: transparent;
}
.esf-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.esf-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
