.card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    padding: 25px 21px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    gap: 16px;
    word-break: break-word;
    overflow: hidden;
}

.icon img,
.action-btn img {
    max-width: 100%;
    height: 20px;
}

.diger {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.icon,
.action-btn {
    background-color: #eef3ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.row.g-3.bosluk {
    padding-top: 20px;
}

.row.g-3.bosluk.altbosluk {
    padding-bottom: 44px;
}

.title {
    font-weight: 600;
    font-size: 15px;
    color: #0f1c3f;
    white-space: normal;
    flex: 1 1 auto;
    min-width: 0;
}

@media (max-width: 576px) {
    .card {
        flex-direction: column;
        align-items: flex-start;
    }

    .diger {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .title {
        width: 100%;
    }
}